美文网首页虾写前端PHP经验分享
获取验证码60秒倒计时js

获取验证码60秒倒计时js

作者: 浅水码农 | 来源:发表于2019-05-10 08:50 被阅读0次
    真的是老了,写个js的计时器居然用了20分钟,惭愧
    
                /*计时器*/
                var wait = 60;
                var e=document.getElementById("btn");
                e.onclick = function() {
                    time(this);
                }
               function time(o) {
                    if (wait == 0) {
                        o.removeAttribute("disabled");            
                        o.value="获取验证码";
                        wait = 60;
                    } else {
                        o.setAttribute("disabled", true);
                        o.value="重新发送(" + wait + ")";
                        wait--;
                        setTimeout(function() {
                        time(o)
                    },1000)}
               }
    

    相关文章

      网友评论

        本文标题:获取验证码60秒倒计时js

        本文链接:https://www.haomeiwen.com/subject/fbqooqtx.html