我在 for 循环中有一个 set-interval 函数,如果在 set-interval 函数内满足条件,则会发出警报并清除间隔。下面是我的代码,但它不起作用任何人都可以告诉这里的错误是什么。
var timeCheck = 0;
function matchTime() {
for (var i=0;i<timers.length;i++) {
timeCheck = setInterval(function () {
var theDate = new Date(timers[i][0]*1000);
var now = new Date();
if ( (now.getFullYear() === theDate.getFullYear()) && (now.getMonth() === theDate.getMonth()) ) {
if ( (now.getDate() === theDate.getDate()) && (now.getHours() === theDate.getHours()) ) {
if ( now.getMinutes() === theDate.getMinutes() && (now.getSeconds() === theDate.getSeconds()) ) { alert("its Time for "+timers[i][1]); stopCheck(); }
}
}
}, 10);
}
}
function stopCheck() { clearInterval(timeCheck); }
谢谢。
我要解决的是:每次本地时间与计时器数组中的时间匹配时(第 0 列;计时器 [count] [0]),我都需要收到警报。数组已经排序
timers.sort(function(a,b) { return a[0] - b[0]; });