1613

setInterval(fname, 10000);JavaScriptで10秒ごとに関数を呼び出すために使用しています。イベントで呼び出しを停止することはできますか?

ユーザーがデータの繰り返し更新を停止できるようにしたい。

4

16 に答える 16

2494

setInterval()に渡すことができる間隔 ID を返しますclearInterval()

var refreshIntervalId = setInterval(fname, 10000);

/* later */
clearInterval(refreshIntervalId);

setInterval()およびのドキュメントを参照してくださいclearInterval()

于 2008-09-20T19:30:59.243 に答える
124

の戻り値をsetInterval変数に設定すると、 を使用clearIntervalして停止できます。

var myTimer = setInterval(...);
clearInterval(myTimer);
于 2008-09-20T19:32:06.667 に答える
63

新しい変数を設定し、実行するたびに++ずつインクリメント(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);
});

それがお役に立てば幸いです。

于 2010-05-16T14:02:25.653 に答える
14

上記の回答では、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>

関数はボタン クリック ハンドラー内で定義されているため、再度定義する必要はありません。ボタンをもう一度クリックすると、タイマーを再開できます。

于 2014-01-19T05:46:41.267 に答える
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()

詳しくはこちらをご覧ください

于 2016-08-23T15:14:22.340 に答える
3

nodeJSでは、setInterval 関数内で「 this 」特別なキーワードを使用できます。

このthisキーワードを clearInterval に使用できます。以下に例を示します。

setInterval(
    function clear() {
            clearInterval(this) 
       return clear;
    }()
, 1000)

関数内でこの特別なキーワードの値を出力すると、Timeout オブジェクトが出力されます。 Timeout {...}

于 2020-09-14T22:34:52.617 に答える
1

setTimeOut を使用して、しばらくしてから間隔を停止します。

var interVal = setInterval(function(){console.log("Running")  }, 1000);
 setTimeout(function (argument) {
    clearInterval(interVal);
 },10000);
于 2019-10-21T09:01:05.053 に答える
-2

より単純なアプローチを使用しないのはなぜですか? クラスを追加!

間隔に何もしないように指示するクラスを追加するだけです。例: ホバー時。

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>

私は何年もの間、この迅速で簡単なアプローチを探していたので、できるだけ多くの人に紹介するためにいくつかのバージョンを投稿しています.

于 2015-04-27T18:04:30.957 に答える