• 获取验证码


    获取验证码倒计时:

    <!DOCTYPE html>
    <html>
    <head>
        <title>获取验证码倒计时</title>
    </head>
    <body>
    <input id="btn"  value="获取验证码" onclick="time(this);">
    <script type="text/javascript">
        var wait = 60;
        document.getElementById("btn").disabled = false;
        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);
            }
        }
    </script>
    </body>
    </html>
  • 相关阅读:
    文件操作(IO 技术)
    异常
    面向对象进阶
    面向对象
    函数用法和底层分析
    控制语句
    集合
    字典
    元组 tuple
    Python3 列表
  • 原文地址:https://www.cnblogs.com/wang715100018066/p/6385996.html
Copyright © 2020-2023  润新知