美文网首页
15秒倒计时跳转

15秒倒计时跳转

作者: jiaomeichen | 来源:发表于2018-03-19 19:48 被阅读0次
var wait = 15,
    timer;
time($(".myRead"));
function time(o) {
    if(wait == 0) {
        o.removeAttr("disabled");
        o.removeClass("myRead_time")
        o.html("已阅读并同意");
        wait = 15;
    } else {
        o.attr("disabled", true);
        o.html("已阅读并同意(" + wait + "s)");
        wait--;
        timer = setTimeout(function() {
            time(o)
        }, 1000)
    }
}

相关文章

网友评论

      本文标题:15秒倒计时跳转

      本文链接:https://www.haomeiwen.com/subject/euqufftx.html