码迷,mamicode.com
首页 > Web开发 > 详细

JS 60秒后重发送验证码

时间:2017-07-25 19:51:48      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:back   pre   cti   disabled   cursor   phone   not   pointer   css   

 

//settime($("#getPhoneCode"),60);

function settime($obj, time) {
    if (time == 0) {
        $obj.attr("disabled", false);
        $obj.css("background", "#f38401").css("cursor", "pointer");
        $obj.text("获取手机验证码"); 
        return;
    } else {
        $obj.attr("disabled", true);
        $obj.css("background", "#ccc").css("cursor", "not-allowed");
        $obj.text("重新发送(" + time + ")");
        time--;
    }
    setTimeout(function () { settime($obj, time) }, 1000)
}

 

JS 60秒后重发送验证码

标签:back   pre   cti   disabled   cursor   phone   not   pointer   css   

原文地址:http://www.cnblogs.com/valeb/p/7235692.html

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