继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

(jQuery实现)点击按钮5秒后再次恢复使用

神威君
关注TA
已关注
手记 4
粉丝 0
获赞 6
<!DOCTYPE html>
<html lang="zh">

<head>
    <meta charset="utf-8">
    <script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
    <script>
        $(document).ready(function () {
            $('button').on('click', function () {
                // 转换DOM对象
                $this = $(this);
                // 保存原按钮的text值
                var oldText = $this.text();
                // 设置计时的开始值,5s要从6开始减
                var i = 6;
                //禁用按钮
                $this.attr('disabled', true);
                //设置定时器
                var btnTimer = null;
                btnTimer = setInterval(function () {
                    // 开始计数
                    i--;

                    // 注意clearInterval一定要最后,不然attr和text函数不会执行
                    if( i <= 0){
                        $this.removeAttr('disabled');
                        $this.text(oldText);
                        clearInterval(btnTimer);
                    }else{
                        $this.text(i);
                    }

                }, 1000)
            })
        })
    </script>
</head>

<body>
    <button>按钮一</button>
    <button>按钮二</button>
</body>

</html>
打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP