jQuery实现倒计时按钮功能代码分享_jquery
程序员文章站
2022-03-31 18:26:48
...
代码一:
{ 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倒计时发送验证码按钮
上一篇: Node.js中交互式解释器用法详解
下一篇: php switch用法详解