码迷,mamicode.com
首页 > 其他好文 > 详细

短信倒计时60秒

时间:2016-08-21 15:17:45      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

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) 
}

 

短信倒计时60秒

标签:

原文地址:http://www.cnblogs.com/camille666/p/js_sendmsg_djs.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!