JavaScriptで10秒ごとに関数を呼び出すためにsetInterval(fname, 10000);
を使用しています。何らかのイベントでそれを呼び出すのをやめることは可能ですか?
ユーザーがデータの繰り返し更新を停止できるようにします。
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がハンドルを返す方法、およびこのハンドルを使用して間隔タイマーをキャンセルする方法について既に説明しました。
アーキテクチャ上の考慮事項
"scope-less"変数を使わないでください。最も安全な方法は、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>
この関数はボタンクリックハンドラ内で定義されているので、再度定義する必要はありません。ボタンをもう一度クリックすると、タイマーを再開できます。
@ cnu、
コンソールブラウザ(F12)を見る前にコードを実行してみると、インターバルを止めることができます。 :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>
すでに回答済み...しかし、異なる間隔で複数のタスクをサポートする機能的で再利用可能なタイマーが必要な場合は、my TaskTimer (Nodeおよびbrowser用)を使用できます。
// 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()
を呼び出すこともできます。
詳細はこちら を参照してください。
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);
}
// timer にアクセスした場所ならどこでも、clearIntervalを呼び出して宣言します。
$('.htmlelement').click( function(){ // any event you want
clearInterval(timer);// Stops or does the work
});
var keepGoing = true;
setInterval(function () {
if (keepGoing) {
//DO YOUR STUFF HERE
console.log(i);
}
//YOU CAN CHANGE 'keepGoing' HERE
}, 500);
イベントリスナを追加して、 "stop-interval"というIDを持つボタンを言うことでインターバルを停止することもできます。
$('buuton#stop-interval').click(function(){
keepGoing = false;
});
HTML:
<button id="stop-interval">Stop Interval</button>
注:間隔は実行されますが、何も起こりません。
ClearInterval()メソッドは、setInterval()メソッドで設定したタイマーをクリアするために使用できます。
setIntervalは常にID値を返します。この値をclearInterval()に渡してタイマーを停止することができます。これは30から始まり、0になると停止するタイマーの例です。
let time = 30;
const timeValue = setInterval((interval) => {
time = this.time - 1;
if (time <= 0) {
clearInterval(timeValue);
}
}, 1000);
これは、10秒後にclearInterval()メソッドを使用してタイマーを停止する方法です。
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>