标签:
var timer=null; clearTimeout(timer); _this.controlTime($(‘#sendyzm-btn-bb‘), 60); // 控制时间为60秒 controlTime: function(sendbtn, wait){ var self = this; if (wait == 0) { sendbtn.prop("disabled",false).removeClass(‘sendyzm-ing‘).val(‘发送验证码‘); wait = 60; return; } else { sendbtn.prop("disabled", true); sendbtn.addClass(‘sendyzm-ing‘); sendbtn.val("请等待"+ wait +"秒"); wait--; } timer= setTimeout(function () { self.controlTime(sendbtn, wait); },1000) }
标签:
原文地址:http://www.cnblogs.com/camille666/p/js_sendmsg_djs.html