jquery提交form表单时禁止重复提交的方法
程序员文章站
2023-11-01 16:12:28
jquery提交form表单时禁止重复提交的代码如下:
$(document).ready(function() {
$('form').su...
jquery提交form表单时禁止重复提交的代码如下:
$(document).ready(function() {
$('form').submit(function() {
if(typeof jquery.data(this, "disabledonsubmit") == 'undefined') {
jquery.data(this, "disabledonsubmit", { submited: true });
$('input[type=submit], input[type=button]', this).each(function() {
$(this).attr("disabled", "disabled");
});
return true;
}
else
{
return false;
}
});
});
上一篇: 黑木耳三好处四禁忌 减肥清道防结石
下一篇: 六类人不能吃鱼 结核患者吃鱼易过敏