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

验证码再次发送

来源:互联网 收集:自由互联 发布时间:2021-06-28
gistfile1.txt //启动验证码倒计时function StartInterval(buttonid) { var button = document.getElementById(buttonid); if (button) { button.disabled = true; var timeoutTick = 180; var t1 = window.setInterval(function () { if (timeoutTic
gistfile1.txt
//启动验证码倒计时
function StartInterval(buttonid) {
    var button = document.getElementById(buttonid);
    if (button) {
        button.disabled = true;
        var timeoutTick = 180;
        var t1 = window.setInterval(function () {

            if (timeoutTick < 0) {
                timeoutTick = 180;
                button.innerHTML = "再次发送";
                button.disabled = false;
                window.clearInterval(t1);
                t1 = null;
            }
            else {
                button.innerHTML = timeoutTick + "s";
                timeoutTick--;
            }
        }, 1000);
    }
}
上一篇:日志打印函数
下一篇:获取服务器时间
网友评论