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) }
时间: 2024-12-10 17:00:49