关闭定时器(setTimeout/clearTimeout|setInterval/clearInterval)

Posted lan-cheng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关闭定时器(setTimeout/clearTimeout|setInterval/clearInterval)相关的知识,希望对你有一定的参考价值。

 1.1 开启Timeout程序: scope.setTimeout("functionName()" | functionHandle, timeValue) 返回值:timerID

  1.2 关闭Timeout程序: scope.clearTimeout(timerID);

  

  2.1 开启Interval程序: scope.setInterval("functionName()" | functionHandle, timeValue)  返回值:timerID

  2.2 关闭Interval程序: scope.clearInterval(timerID);

60秒倒计时:

  let _this = this
      this.sendState = true;
     let time = setInterval(function(){
          _this.countdown-=1;
          if(_this.countdown==0){
            clearInterval(time)
            _this.sendState = false;
            _this.countdown = 60
          }
          console.log(_this.countdown)
      },1000)

  

以上是关于关闭定时器(setTimeout/clearTimeout|setInterval/clearInterval)的主要内容,如果未能解决你的问题,请参考以下文章

表单关闭后定时器不触发

iOS 关闭定时器

javascript 定时器关闭基准

JS# 关闭定时器setInterval实现公告左右轮播获取每月最大的天数如何跳出forEach循环

vue keep-alive中页面缓存后destroyed失效-如何关闭定时器

关闭定时器(setTimeout/clearTimeout|setInterval/clearInterval)