码迷,mamicode.com
首页 > 其他好文 > 详细

1111

时间:2016-07-07 23:55:27      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

    <script src="js/zepto.min.js"></script>
    <script>
        $(function () {
            $("#getCode").on("click", function () {
                fn_sendSMS();
            });

            function fn_sendSMS()
            {
                $("#getCode").text("5秒后重新发送").addClass("disabled").off("click");
                intervalId = setInterval(function () {
                    var target = $("#getCode");
                    var num = /^\d{1,2}/.exec(target.text());
                    var currentSecond = parseInt(num[0]);
                    if (currentSecond == 1) {
                        target.text("重新发送").removeClass("disabled").on({ "click": fn_sendSMS });
                        clearInterval(intervalId);
                    } else {
                        target.text((--currentSecond) + "秒后重新发送");
                    }
                }, 1000);
            }
        });
    </script>

  

1111

标签:

原文地址:http://www.cnblogs.com/jason-xiao/p/5651846.html

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