1、Enable the button
2、设置一个变量,只允许提交一次
实例:
JS
HTML:
(有时候在浏览器后退时需要清空表单,这样可采用在网页头加入 <META name="save" content="history"> 这样便使浏览器不保留历史 )
2、设置一个变量,只允许提交一次
实例:
JS
# $(function(){
//$('#btn').attr("disabled","disabled");
$("form").submit(function(){
// $(":submit").attr("disabled","disabled");
return false;
});
//防止页面后退
window.history.forward();
});
function c(){
$('#btn').attr("disabled","disabled");
}
// --></mce:script>
<mce:script language="javascript"><!--
var checkSubmitFlg = false;
function checkSubmit() {
if (!checkSubmitFlg) {
checkSubmitFlg = true;
return true;
}else{
alert("不能重复提交");
return false;
}
}
// --></mce:script>
HTML:
<form action="3.1.htm" method="post" onsubmit="return checkSubmit();" > <!--onsubmit="c();"-->
<input type="submit" value="submit"/>
<input id="btn" type="button" value="button"/> <!-- click="this.disabled=true;" -->
</form>
(有时候在浏览器后退时需要清空表单,这样可采用在网页头加入 <META name="save" content="history"> 这样便使浏览器不保留历史 )