jquery设置按钮停顿3秒不可用(按钮变灰)

发布时间:2020-07-13编辑:脚本学堂
如何用jquery设置按钮不可用,当提交表单后让按钮变灰,三秒之内不可以重复提交,jquery实现按钮变灰效果的例子,需要的朋友参考下。

代码(jquery设置disabled属性,按钮变灰不可用):
 

复制代码 代码示例:
<!doctype html>
<html>
<head>
<title>jquery设置按钮停顿3秒不可用 - www.osxue.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
var times = 0
function show(obj) {
$("#btn_"+obj).attr("disabled","disabled"); //设置button按钮变灰不可用
times++;
if(times == 2){
alert(obj);
times = 0;
$("#btn_"+obj).removeAttr("disabled");
return ;
}
//$("#frm"+obj).submit();
setTimeout("show("+obj+")" , 3000);
}
</script>
</head>
<body>
<form action ='post.php' method="post" name="frm1" id="frm1">
<input type="button" name="btn_1" id="btn_1" value="提交1" onclick="show(1)" />
</form>
<form action ='post.php' method="post" name="frm2" id="frm2">
<input type="button" name="btn_2" id="btn_2" value="提交2" onclick="show(2)"/>
</form>
</body>
</html>

您可能感兴趣的文章: