82

条件が正しければ、実行間隔を終了する必要があります。

var refreshId = setInterval(function() {
        var properID = CheckReload();
        if (properID > 0) {
            <--- exit from the loop--->
        }
    }, 10000);
4

3 に答える 3

184

clearIntervalを使用します:

var refreshId = setInterval(function() {
  var properID = CheckReload();
  if (properID > 0) {
    clearInterval(refreshId);
  }
}, 10000);
于 2009-11-25T06:55:57.387 に答える
12

の値setIntervalclearIntervalに渡します。

const interval = setInterval(() => {
  clearInterval(interval);
}, 1000)

デモ

タイマーは、0に達するまで、1秒ごとにデクリメントされます。

let secondsRemaining = 10

const interval = setInterval(() => {

  // just for presentation
  document.querySelector('p').innerHTML = secondsRemaining

  // time is up
  if (secondsRemaining === 0) {
    clearInterval(interval);
  }

  secondsRemaining--;
}, 1000);
<p></p>

于 2019-05-01T06:24:42.317 に答える
2

ES6用に更新

変数のスコープを設定して、名前空間の汚染を回避できます。

const CheckReload = (() => {
  let counter = - 5;
  return () => {
    counter++;
    return counter;
  };
})();

{
const refreshId = setInterval(
  () => {
    const properID = CheckReload();
    console.log(properID);
    if (properID > 0) {
      clearInterval(refreshId);
    }
  },
  100
);
}

于 2019-03-07T17:41:19.640 に答える