jquery提交form表单时禁止重复提交的方法
程序员文章站
2023-12-27 08:37:15
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;
}
});
});