jquery防止快速点击

jquery防止快速点击(推荐第三种方式)
 //全站ajax加载提示
 (function ($) {
     var str = '';
     var dom = $(str).prependTo('body');
     $(document).ajaxStart(function(){
         dom.stop(true,false).queue(function(){
             $(this).show().dequeue();
         });
     });
     $(document).ajaxStop(function(){
         dom.queue(function(){
             $(this).hide().dequeue();
         });
     });
 })(jQuery);
===========================
 
 
点击获取验证码按钮后按钮变灰,倒计时一段时间后又可重复点击 
 
 
 
 
 
 
=====================
歪门邪道法:
  设置一个透明div 与页面最上层 然后自动消失 使得点击不到按钮 (简单好用)




 

 

转载于:https://www.cnblogs.com/ryans/p/6560117.html

你可能感兴趣的:(jquery防止快速点击)