我使用setInterval(fname, 10000);
在JavaScript中每10秒调用一次函数。是否有可能在某些事件上停止调用它?
我希望用户能够停止重复刷新数据。
答案 0 :(得分:1941)
setInterval()
会返回一个区间ID,您可以将其传递给clearInterval()
:
var refreshIntervalId = setInterval(fname, 10000);
/* later */
clearInterval(refreshIntervalId);
请参阅setInterval()
和clearInterval()
的文档。
答案 1 :(得分:100)
如果您将setInterval
的返回值设置为变量,则可以使用clearInterval
来停止它。
var myTimer = setInterval(...);
clearInterval(myTimer);
答案 2 :(得分:43)
你可以设置一个新变量,并在每次运行时增加++(向上计数),然后我使用条件语句结束它:
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 :(得分:13)
上面的答案已经解释了setInterval如何返回句柄,以及如何使用此句柄取消间隔计时器。
一些架构考虑事项:
请不要使用“无范围”变量。最安全的方法是使用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>
由于函数是在按钮单击处理程序中定义的,因此您不必再次定义它。如果再次单击该按钮,则可以恢复计时器。
答案 4 :(得分:5)
@cnu,
你可以停止间隔,当试试运行代码之前看看你的控制台浏览器(F12)...尝试注释clearInterval(触发器)再看一个控制台,而不是美化? :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);
&#13;
<div id="sandroalvares" style="background: gold; width:200px;">Author</div>
&#13;
答案 5 :(得分:5)
已经回答了......但是如果你需要一个特色的,可重复使用的计时器,它还支持不同时间间隔的多个任务,你可以使用我的TaskTimer(用于节点和浏览器)。
// 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()
。
请参阅more here。
答案 6 :(得分:1)
声明变量以赋予从setInterval(...)返回的值 并将指定的变量传递给clearInterval();
e.g。
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
});
答案 7 :(得分:1)
很多人给出了很好的答案,clearInterval
是正确的解决方案。
但我认为我们可以做得更多,让我们的编辑器使用 javascript 计时器强制执行最佳实践。
忘记清除由 setTimeout
或 setInterval
设置的计时器总是很容易,这会导致不易发现的错误。
所以我为上面的问题创建了一个 eslint 插件。
答案 8 :(得分:1)
在nodeJS中,可以在setInterval函数中使用特殊关键字“ this ”。
您可以使用此 this 关键字来清除Interval,下面是一个示例:
setInterval(
function clear() {
clearInterval(this)
return clear;
}()
, 1000)
当您在函数中打印此特殊关键字的值时,将输出超时对象Timeout {...}
答案 9 :(得分:0)
var interval = setInterval(timer, 100);
var n = 0;
function timer() {
n = n + 0.1
document.getElementById('show').innerHTML = n.toFixed(2)
}
function pause() {
clearInterval(interval)
}
function resume(){
interval = setInterval(timer, 100)
}
<h1 id="show">0</h1>
<button id="btn" onclick="pause()">STOP</button>
<button id="btn" onclick="resume()">RESUME</button>
答案 10 :(得分:0)
尝试
let refresch = ()=> document.body.style= 'background: #'
+Math.random().toString(16).slice(-6);
let intId = setInterval(refresch, 1000);
let stop = ()=> clearInterval(intId);
body {transition: 1s}
<button onclick="stop()">Stop</button>
答案 11 :(得分:0)
我想以下代码会有所帮助:
value = pickListValues1.getValue();
label=pickListValues1.getLabel();
sales_stagenames.add(value);
ArrayList<String> salesstages=new ArrayList<>();
for(int i=0;i<= sales_stagenames.size();i++){
if((i!=4)&&(i!=5)) salesstages.add(sales_stagenames.get(i));}
您已100%正确地编写了代码...那么...有什么问题?还是教程...
答案 12 :(得分:0)
使用setTimeOut在一段时间后停止间隔。
var interVal = setInterval(function(){console.log("Running") }, 1000);
setTimeout(function (argument) {
clearInterval(interVal);
},10000);
答案 13 :(得分:0)
这就是我使用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>
答案 14 :(得分:0)
clearInterval()方法可用于清除通过setInterval()方法设置的计时器。
setInterval始终返回ID值。可以在clearInterval()中传递此值以停止计时器。 这是一个计时器的示例,该计时器从30开始并在其变为0时停止。
let time = 30;
const timeValue = setInterval((interval) => {
time = this.time - 1;
if (time <= 0) {
clearInterval(timeValue);
}
}, 1000);
答案 15 :(得分:0)
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>
注意:该间隔仍将执行,但是什么也不会发生。
答案 16 :(得分:-1)
clearInterval()
注意,您可以使用此功能启动和暂停代码。这个名字有点欺骗性,因为它说是CLEAR,但它并没有清除任何内容。它实际上暂停了。
使用以下代码进行测试:
HTML:
j
JavaScript:
<div id='count'>100</div>
<button id='start' onclick='start()'>Start</button>
<button id='stop' onclick='stop()'>Stop</button>
答案 17 :(得分:-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');
});
&#13;
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;
}
&#13;
<!-- 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"> </p>
<button id="pauseInterval">Pause</button></p>
&#13;
我一直在寻找这种快速简便的方法,所以我发布了几个版本,尽可能多地介绍它。