jQuery 短信验证码倒计时

霸气de小男生 提交于 2020-03-02 04:23:18
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
<button id="btn-vcode" class="btn-vcode sigin_btn form_btn" type="button" style="border:none;">点击获取验证码</button>
<script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js">
</script>
<script>
    $(function(){
        time($("#btn-vcode"));
    });

    var wait = 60;
    function time(o) {
        if (wait == 0) {
            o.removeAttr("disabled");
            o.html('验证码');
            wait = 60;
        } else {
            o.attr("disabled", "disabled");
            o.html(wait + "秒");
            wait--;
            setTimeout(function () {
                        time(o);
                    },
                    1000);
        }
    }
</script>
</body>
</html>

  

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!