停止JavaScript中的setInterval调用


1398

setInterval(fname, 10000);用来在JavaScript中每10秒调用一次函数。是否可以在某个事件中停止调用它?

我希望用户能够停止重复刷新数据。

Answers:


2160

setInterval()返回一个间隔ID,您可以将其传递给clearInterval()

var refreshIntervalId = setInterval(fname, 10000);

/* later */
clearInterval(refreshIntervalId);

请参阅该文档为setInterval()clearInterval()


41
使用“ clearInterval()”停止后如何重新启动?如果尝试重新启动它,则将运行setInterval 2倍。
2012年

7
我也想每次使用SetInterval(MyFunction,4000); 它变得越来越快,每次快2倍:(我如何重新启动setinterval?
Alireza Masali 2013年

14
SetInterval()不会更改您传递它的速度。如果每次调用SetInterval()时正在执行的操作加快了速度,则您有多个同时运行的计时器,应该打开一个新问题。
EpicVoyage

29
确保您确实停止了它。由于作用域范围不同,您可能没有正确的ID可以致电clearInterval。我用了window.refreshIntervalId而不是局部变量,效果很好!
osa

2
我已经开始将setInterval句柄附加到其关联的元素上(如果相关):$('foo').data('interval', setInterval(fn, 100));然后使用clearInterval($('foo').data('interval'));肯定的非jQuery方法清除它。
Michael-Clay Shirky在哪里

105

如果将返回值设置setInterval为变量,则可以使用clearInterval它来停止它。

var myTimer = setInterval(...);
clearInterval(myTimer);

我看不出这与John的答案有什么区别
Bobtroopo

51

您可以设置一个新变量,并在每次运行时使它递增++(加1),然后使用条件语句结束该变量:

var intervalId = null;
var varCounter = 0;
var varName = function(){
     if(varCounter <= 10) {
          varCounter++;
          /* your code goes here */
     } else {
          clearInterval(intervalId);
     }
};

$(document).ready(function(){
     intervalId = setInterval(varName, 10000);
});

我希望它会有所帮助,这是正确的。


3
我惊讶地发现这行得通clearInterval(varName);。我希望clearInterval当传递函数名到不行,我认为它需要的时间间隔ID。我想这只能在您具有命名函数的情况下起作用,因为您不能将匿名函数作为其内部的变量传递。
Patrick M

31
其实我认为这行不通。由于计数器的限制,该代码停止执行,但是该间隔持续触发varName()。尝试在clearInterval()之后(在else子句中)记录任何内容,您将看到它永远被写入。
拉斐尔·奥利维拉

5
如此之多的事情都为不可行的事情投票,有时我听不懂SO上的人:P
搁浅的孩子

2
$(document).ready(function(){ });是jQuery,这就是为什么它不起作用的原因。至少应该提到这一点。
paddotk 2015年

4
@OMGrant,除了不起作用的示例外,您还有一个名为的变量varName,该变量存储一个未命名的函数-wha ?? 您应该更改或取消此答案,恕我直言。
Dean Radcliffe

13

上面的答案已经解释了setInterval如何返回一个句柄,以及如何使用该句柄取消Interval计时器。

一些架构上的考虑:

请不要使用“无作用域”变量。最安全的方法是使用DOM对象的属性。最简单的地方是“文档”。如果刷新是通过“开始/停止”按钮启动的,则可以使用该按钮本身:

<a onclick="start(this);">Start</a>

<script>
function start(d){
    if (d.interval){
        clearInterval(d.interval);
        d.innerHTML='Start';
    } else {
        d.interval=setInterval(function(){
          //refresh here
        },10000);
        d.innerHTML='Stop';
    }
}
</script>

由于该函数是在按钮单击处理程序中定义的,因此您无需再次定义它。如果再次单击该按钮,则计时器可以恢复。


1
戴上它document比戴上什么好window
icktoofay 2014年

1
更正。我的意思是说document.body。在我的代码示例中,我有效地使用了按钮本身。该按钮没有ID,但是“ this”指针绑定到函数中的“ d”参数。使用“窗口”作为范围是有风险的,因为功能也在那里。例如,可通过window.test访问“函数test(){}”,这与根本不使用范围是相同的,因为它是一种简写。希望这可以帮助。
2014年

1
不要丢失“无作用域”变量->不要使用“无作用域”变量,我会对其进行编辑,但是更改少于6个字母,并且错误令人困惑。
Leif Neland 2014年

2
您不需要DOM。只是我们一个IIFE来避免全球范围的污染。
OnurYıldırım16年

1
我必须在innerhtml ='start'之后添加'd.interval = undefined'使其再次工作。因为那样只能工作一次。
jocmtb

11

已经回答...但是,如果您需要一个功能强大且可重复使用的计时器,该计时器还支持不同时间间隔的多个任务,则可以使用我的TaskTimer(用于Node和浏览器)。

// Timer with 1000ms (1 second) base interval resolution.
const timer = new TaskTimer(1000);

// Add task(s) based on tick intervals.
timer.add({
    id: 'job1',         // unique id of the task
    tickInterval: 5,    // run every 5 ticks (5 x interval = 5000 ms)
    totalRuns: 10,      // run 10 times only. (omit for unlimited times)
    callback(task) {
        // code to be executed on each run
        console.log(task.name + ' task has run ' + task.currentRuns + ' times.');
        // stop the timer anytime you like
        if (someCondition()) timer.stop();
        // or simply remove this task if you have others
        if (someCondition()) timer.remove(task.id);
    }
});

// Start the timer
timer.start();

在您的情况下,当用户单击以扰乱数据刷新时;您也可以拨打timer.pause()那么timer.resume(),如果他们需要重新启用。

在这里查看更多


6

clearInterval()方法可用于清除使用setInterval()方法设置的计时器。

setInterval始终返回ID值。可以在clearInterval()中传递此值以停止计时器。这是一个计时器的示例,该计时器从30开始并在其变为0时停止。

  let time = 30;
  const timeValue = setInterval((interval) => {
  time = this.time - 1;
  if (time <= 0) {
    clearInterval(timeValue);
  }
}, 1000);

5

@cnu,

您可以停止间隔,在尝试在控制台浏览器(F12)上运行代码之前尝试运行代码...请尝试注释clearInterval(trigger)再次成为控制台,而不是美化器?:P

查看示例来源:

var trigger = setInterval(function() { 
  if (document.getElementById('sandroalvares') != null) {
    document.write('<div id="sandroalvares" style="background: yellow; width:200px;">SandroAlvares</div>');
    clearInterval(trigger);
    console.log('Success');
  } else {
    console.log('Trigger!!');
  }
}, 1000);
<div id="sandroalvares" style="background: gold; width:200px;">Author</div>


3

声明变量以分配从setInterval(...)返回的值,并将分配的变量传递给clearInterval();

例如

var timer, intervalInSec = 2;

timer = setInterval(func, intervalInSec*1000, 30 ); // third parameter is argument to called function 'func'

function func(param){
   console.log(param);
}

//您可以访问在调用clearInterval之前声明的计时器的任何地方

$('.htmlelement').click( function(){  // any event you want

       clearInterval(timer);// Stops or does the work
});

1
var keepGoing = true;
setInterval(function () {
     if (keepGoing) {
        //DO YOUR STUFF HERE            
        console.log(i);
     }
     //YOU CAN CHANGE 'keepGoing' HERE
  }, 500);

您还可以通过添加事件监听器来停止间隔,比如说一个ID为“ stop-interval”的按钮:

$('buuton#stop-interval').click(function(){
   keepGoing = false;
});

HTML:

<button id="stop-interval">Stop Interval</button>

注意:该间隔仍将执行,但是什么也不会发生。


2
这实际上是为了提高性能,而对于后台选项卡,实际上将使所有其他计时器变慢很多,因为为后台选项卡限制了计时器和间隔
Ferrybig

1

这就是我使用clearInterval()方法在10秒后停止计时器的方式。

function startCountDown() {
  var countdownNumberEl = document.getElementById('countdown-number');
  var countdown = 10;
  const interval = setInterval(() => {
    countdown = --countdown <= 0 ? 10 : countdown;
    countdownNumberEl.textContent = countdown;
    if (countdown == 1) {
      clearInterval(interval);
    }
  }, 1000)
}
<head>
  <body>
    <button id="countdown-number" onclick="startCountDown();">Show Time </button>
  </body>
</head>


1

使用setTimeOut在一段时间后停止间隔。

var interVal = setInterval(function(){console.log("Running")  }, 1000);
 setTimeout(function (argument) {
    clearInterval(interVal);
 },10000);

0

我猜下面的代码会有所帮助:

var refreshIntervalId = setInterval(fname, 10000);

clearInterval(refreshIntervalId);

您已100%正确地编写了代码...那么...问题是什么?或者是教程...


-3

为什么不使用更简单的方法?添加课程!

只需添加一个告诉间隔什么都不做的类。例如:悬停。

var i = 0;
this.setInterval(function() {
  if(!$('#counter').hasClass('pauseInterval')) { //only run if it hasn't got this class 'pauseInterval'
    console.log('Counting...');
    $('#counter').html(i++); //just for explaining and showing
  } else {
    console.log('Stopped counting');
  }
}, 500);

/* In this example, I'm adding a class on mouseover and remove it again on mouseleave. You can of course do pretty much whatever you like */
$('#counter').hover(function() { //mouse enter
    $(this).addClass('pauseInterval');
  },function() { //mouse leave
    $(this).removeClass('pauseInterval');
  }
);

/* Other example */
$('#pauseInterval').click(function() {
  $('#counter').toggleClass('pauseInterval');
});
body {
  background-color: #eee;
  font-family: Calibri, Arial, sans-serif;
}
#counter {
  width: 50%;
  background: #ddd;
  border: 2px solid #009afd;
  border-radius: 5px;
  padding: 5px;
  text-align: center;
  transition: .3s;
  margin: 0 auto;
}
#counter.pauseInterval {
  border-color: red;  
}
<!-- you'll need jQuery for this. If you really want a vanilla version, ask -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>


<p id="counter">&nbsp;</p>
<button id="pauseInterval">Pause</button></p>

我一直在寻找这种快速,简便的方法,因此,我发布了多个版本,以尽可能多地向人们介绍该方法。


17
对我来说似乎并不那么简单...我也认为删除间隔而不是保留对无所事事的函数的调用更为干净。
罗曼·布劳恩

我不同意 this.setInterval(function() { if(!$('#counter').hasClass('pauseInterval')) { //do something } }, 500);是您拥有代码的全部。此外,支票是您要做的第一件事,因此当它悬停时它非常轻巧。这就是这个目的:暂时暂停功能。如果您想无限期终止它:当然可以删除间隔。
Aart den Braber

这相当于轮询,通常不建议这样做。它将CPU从低功耗状态唤醒,只是进行(可能)无用的检查。在此示例中,它还将反馈从立即延迟到0到500 ms之间。
查理

我完全不同意您的看法,即使两年前我编写了代码也是如此。无论如何,计数器必须在那儿,因为OP要求它。当然,例如,如果您使用它在按下按钮后停止计数器,这将是次佳的解决方案,但是仅在悬停时暂停时,这是最简单的解决方案之一。
Aart den Braber
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.