码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2017-08-24 12:35:57      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:body   免费   input   func   var   isa   http   div   bsp   

 

<!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秒的简单代码(推荐)

标签:body   免费   input   func   var   isa   http   div   bsp   

原文地址:http://www.cnblogs.com/tzdy/p/7422179.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!