jQuery实现倒计时按钮功能代码分享

代码一:

{ 
 wait:90,
 
 hsTime:function(that){
 
   if (this.wait == 0) { 
    $('#hsbtn').removeAttr("disabled").val('重发短信验证码');   
    this.wait = 90; 
   } else { 
    var _this = this;
    $(that).attr("disabled", true).val('在'+_this.wait+'秒后点此重发');
    _this.wait--; 
    setTimeout(function() { 
     _this.hsTime(that); 
    }, 1000) 
   } 
  },
}

代码二:




 
 
 


  

代码三:




 10之后注册
 
 






代码四:





 
 
 


  

代码五:

最近在写短信发送验证码,就写了个js/jquery倒计时发送验证码按钮


你可能感兴趣的:(jQuery实现倒计时按钮功能代码分享)