js jquery 按钮点击后 60秒之后才能点击 60秒倒计时

时间:2014-05-09 19:25:41   收藏:0   阅读:569
var wait = 60;
           function time(o) {
               if (wait == 0) {
                   $(o).attr("disabled", false);
                   $(o).val("获取验证码");
                   wait = 60;
               } else {
                   $(o).attr("disabled", true);
                   o.val(wait + "秒后重新发送");
                   wait--;
                   setTimeout(function () {time(o);},1000);
               }
           }

调用方法,当按钮点击之后,在点击后方法里面调用

var bu = $(‘#btnGetVerifyCode‘);
      time(bu);
这个是需要在jquery里面来操作的

js jquery 按钮点击后 60秒之后才能点击 60秒倒计时,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!