欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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;
    }
  });
});