美文网首页
js倒计时

js倒计时

作者: 静_c540 | 来源:发表于2018-08-10 18:50 被阅读0次

/**

* 倒计时30s发送心跳

* */

getCode:function () {

const TIME_COUNT =30;

    var that=this;

    if (!that.timer) {

that.count = TIME_COUNT;

        that.timer =setInterval(function () {

if (that.count >0 && that.count <= TIME_COUNT) {

that.count--;

            }else {

clearInterval(that.timer);

                that.timer =null;

                that.getCode();

            }

}, 1000)

}

},

相关文章

网友评论

      本文标题:js倒计时

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