setInterval(fname, 10000);
JavaScriptで10秒ごとに関数を呼び出すために使用しています。イベントで呼び出しを停止することはできますか?
ユーザーがデータの繰り返し更新を停止できるようにしたい。
setInterval(fname, 10000);
JavaScriptで10秒ごとに関数を呼び出すために使用しています。イベントで呼び出しを停止することはできますか?
ユーザーがデータの繰り返し更新を停止できるようにしたい。
setInterval()
に渡すことができる間隔 ID を返しますclearInterval()
。
var refreshIntervalId = setInterval(fname, 10000);
/* later */
clearInterval(refreshIntervalId);
setInterval()
およびのドキュメントを参照してくださいclearInterval()
。
の戻り値をsetInterval
変数に設定すると、 を使用clearInterval
して停止できます。
var myTimer = setInterval(...);
clearInterval(myTimer);
新しい変数を設定し、実行するたびに++ずつインクリメント(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);
});
それがお役に立てば幸いです。
上記の回答では、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>
関数はボタン クリック ハンドラー内で定義されているため、再度定義する必要はありません。ボタンをもう一度クリックすると、タイマーを再開できます。
すでに回答済み...しかし、さまざまな間隔で複数のタスクをサポートする、注目の再利用可能なタイマーが必要な場合は、私の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()
詳しくはこちらをご覧ください。
nodeJSでは、setInterval 関数内で「 this 」特別なキーワードを使用できます。
このthisキーワードを clearInterval に使用できます。以下に例を示します。
setInterval(
function clear() {
clearInterval(this)
return clear;
}()
, 1000)
関数内でこの特別なキーワードの値を出力すると、Timeout オブジェクトが出力されます。 Timeout {...}
setTimeOut を使用して、しばらくしてから間隔を停止します。
var interVal = setInterval(function(){console.log("Running") }, 1000);
setTimeout(function (argument) {
clearInterval(interVal);
},10000);
間隔に何もしないように指示するクラスを追加するだけです。例: ホバー時。
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"> </p>
<button id="pauseInterval">Pause</button></p>
私は何年もの間、この迅速で簡単なアプローチを探していたので、できるだけ多くの人に紹介するためにいくつかのバージョンを投稿しています.