使用setTimeout()可以在指定的时间启动一个函数:

setTimeout(function, 60000);

但是如果我想多次启动这个函数呢?每当一个时间间隔过去时,我都希望执行函数(假设每60秒执行一次)。


当前回答

使用窗口。setInterval(函数、时间)。

其他回答

Call a Javascript function every 2 second continuously for 10 second. var intervalPromise; $scope.startTimer = function(fn, delay, timeoutTime) { intervalPromise = $interval(function() { fn(); var currentTime = new Date().getTime() - $scope.startTime; if (currentTime > timeoutTime){ $interval.cancel(intervalPromise); } }, delay); }; $scope.startTimer(hello, 2000, 10000); hello(){ console.log("hello"); }

如果你不关心计时器内的代码是否会比你的间隔时间长,请使用setInterval():

setInterval(function, delay)

反复触发作为第一个参数传入的函数。

一个更好的方法是使用setTimeout和一个自动执行的匿名函数:

(function(){
    // do some stuff
    setTimeout(arguments.callee, 60000);
})();

这保证了在执行代码之前不会进行下一次调用。我使用了论点。本例中的Callee作为函数引用。给函数命名并在setTimeout中调用是一种更好的方式因为参数。Callee在ecmascript 5中已弃用。

使用窗口。setInterval(函数、时间)。

一个订阅setInterval()并使用clearInterval()来停止永久循环的好例子:

function myTimer() {

}

var timer = setInterval(myTimer, 5000);

调用这一行来停止循环:

clearInterval(timer);

有两种方法叫-

setInterval(function (){functionName();}, 60000); setInterval (functionName, 60000);

以上函数将每60秒调用一次。