博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js手机短信按钮倒计时
阅读量:6633 次
发布时间:2019-06-25

本文共 613 字,大约阅读时间需要 2 分钟。

/*
   120秒手机短信按钮倒计时
   */
    exports.sendmessage = function (name) {
        var second = 120;
        $(name).attr("disabled", true);
        var color = $(name).css('background-color');
        $(name).attr("style", "background-color : #c1c1c1");
        function update(num) {
            if (num == second) {
                $(name).attr("style", "background-color : "+color);
                $(name).text("获取验证码");
                $(name).attr("disabled", false);
            }
            else {
                var printnr = second - num;
                $(name).text(printnr + "秒后获取");
            }
        }
        function uupdate(i) {
            return function () {
                update(i);
            }
        }
        for (var i = 1; i <= second; i++) {
            setTimeout(uupdate(i), i * 1000);
        }
    }

转载于:https://www.cnblogs.com/momox/p/5090651.html

你可能感兴趣的文章