当前位置 : 主页 > 网络编程 > JavaScript >

发送验证码 重发倒计时

来源:互联网 收集:自由互联 发布时间:2021-06-28
gistfile1.txt //发送验证码 重发倒计时var countdown=60; function settime(obj) { if (countdown == 0) { obj.removeAttribute("disabled"); obj.value="发送验证码"; countdown = 60; return; } else { obj.setAttribute("disabled", true)
gistfile1.txt
//发送验证码 重发倒计时
var countdown=60; 
function settime(obj) { 
    if (countdown == 0) { 
        obj.removeAttribute("disabled");    
        obj.value="发送验证码"; 
        countdown = 60; 
        return;
    } else { 
        obj.setAttribute("disabled", true); 
        obj.value="重发(" + countdown + ")"; 
        countdown--; 
    } 
setTimeout(function() { 
    settime(obj) }
    ,1000) 
}
网友评论