做的稍微完善一点点。

来源:3-4 编程练习

一只小新

2020-05-14 17:46

<!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>


写回答 关注

2回答

  • 慕梦前来
    2022-11-29 19:00:46

    不错 ,有想像

  • 慕梦前来
    2021-10-29 20:55:32

    很好很用心了,不错

Tab选项卡切换效果

本课程详细介绍网页页面中最流行常用的tab切换效果

65469 学习 · 533 问题

查看课程

相似问题