js实现倒计时60秒的简单代码(推荐)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js实现倒计时60秒的简单代码(推荐)相关的知识,希望对你有一定的参考价值。

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>js实现倒计时60秒的简单代码(推荐)</title>
    <script type="text/javascript" src="js/jquery.js"></script>
</head>

<body>
<input type="button" id="btn" value="免费获取验证码" onclick="settime(this)" />
<script type="text/javascript">
    var countdown=60;
    function settime(val) {
        if (countdown == 0) {
            val.removeAttribute("disabled");
            val.value="免费获取验证码";
            countdown = 60;
        } else {
            val.setAttribute("disabled", true);
            val.value="重新发送(" + countdown + ")";
            countdown--;
            setTimeout(function() {
                settime(val)
            },1000)
        }

    }
</script>
</body>
</html>

 

以上是关于js实现倒计时60秒的简单代码(推荐)的主要内容,如果未能解决你的问题,请参考以下文章

怎么用shell脚本实现一个1分10秒的倒计时

怎么用shell脚本实现一个1分10秒的倒计时

怎么用shell脚本实现一个1分10秒的倒计时

用 Java 打印 60 秒倒计时

如何在 kivy 中创建 60 秒倒数计时器

js简单时分秒倒计时