为了账号安全,请及时绑定邮箱和手机立即绑定

做的稍微完善一点点。

<!DOCTYPE html>

<html lang="en">


<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>验证码按钮倒计时</title>

</head>


<body>

    <input type="button" id='send' value="发送验证码">

</body>

<script type="text/javascript">

    var send = document.getElementById('send');

    times = 10;

    timer = null;

    // console.log(send.value);

    if (send.value = '发送验证码') {

        send.onclick = function () {

            var tant = this;

            // if (timer) {

            //     clearInterval(timer);

            //     timer = null;

            // }

            timer = setInterval(function () {

                times--;

                if (times <= 0) {

                    tant.setAttribute('value', '发送验证码');

                    tant.disabled="";

                    clearInterval(timer);

                    times = 10;

                } else {

                    tant.setAttribute('value', times + '秒后重试');

                }

                console.log(times);

            }, 1000);

            tant.setAttribute('disabled','true');

        }

    }

</script>

</html>


正在回答

1 回答

不错 ,有想像

0 回复 有任何疑惑可以回复我~

很好很用心了,不错

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

做的稍微完善一点点。

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信