最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

一個(gè)JavaScript防止表單重復(fù)提交的實(shí)例

 更新時(shí)間:2014年10月21日 16:54:24   投稿:whsnow  
防止重復(fù)表單提交的方法有很多,本文使用JavaScript來實(shí)現(xiàn)防止表單重復(fù)提交,很簡單,但很實(shí)用,新手朋友們不要錯(cuò)過
<!DOCTYPE html> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 
<title>防止重復(fù)表單提交</title> 
<style> 
#refresh{ 
display: none; 
width:200px; 
height:20px; 
background-color: #ff0; 

} 

</style> 

<script> 
var inprocess = false; 
window.onload = function(){ 

document.forms["picker"].onsubmit = validateSubmit; 
document.getElementById("refresh").onclick = startOver; 
} 
function validateSubmit () { 
// 防止重復(fù)的表單提交 
if (inprocess) return; 
inprocess = true; 
console.log(inprocess); 
document.getElementById("submitbutton").disabled = true; 

document.getElementById("refresh").style.display = "block"; 
document.getElementById("message").innerHTML = "<p>正在processing,稍等</p>"; 
return false; 
} 
function startOver(){ 
inprocess = false; 
document.getElementById("submitbutton").disabled = false; 
document.getElementById("message").innerHTML = ""; 
document.getElementById("refresh").style.display = "none"; 

} 
</script> 
</head> 

<body> 

<form id="picker" method="post" action=""> 
group1:<input type="radio" name="group1" value="one" /> 
group2:<input type="radio" name="group1" value="two" /> 
group3:<input type="radio" name="group1" value="three" /><br /><br /> 
Input 1: <input type="text" id="intext" /> 
Input 2: <input type="text" id="intext2" /> 
Input 3: <input type="text" id="intext3" /> 
<input type="submit" id="submitbutton" value="send form" /> 
</form> 
<div id="refresh"> 
<p>單擊我</p> 
</div> 
<div id="message"></div> 
</body> 
</html> 

相關(guān)文章

最新評論

镶黄旗| 泰安市| 炎陵县| 东兴市| 黑龙江省| 宁陕县| 博客| 大新县| 自治县| 贵阳市| 大新县| 通海县| 纳雍县| 鹤峰县| 芦溪县| 舒兰市| 天全县| 密山市| 正镶白旗| 大厂| 井冈山市| 呼图壁县| 文山县| 威信县| 蓬溪县| 全椒县| 璧山县| 北川| 徐州市| 桓台县| 武隆县| 教育| 句容市| 繁昌县| 抚远县| 白山市| 河东区| 南木林县| 天气| 阳信县| 宁河县|