萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> jquery提交form表單時禁止重復提交的方法

jquery提交form表單時禁止重復提交的方法

 這篇文章主要介紹了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;     }   }); });    
copyright © 萬盛學電腦網 all rights reserved