我試圖每4秒更改一次背景,但它直接跳到第二個條件並且不再更改。這是爲什麼發生?setInterval不重複
var time = 1;
var func = function() {
'use strict';
if (time === 1) {
document.getElementById("top-background").style.backgroundColor = "#000";
time += 1;
}
if (time === 2) {
document.getElementById("top-background").style.backgroundColor = "#aaa";
time += 1;
}
if (time === 3) {
document.getElementById("top-background").style.backgroundColor = "#d5d5d5";
time -= 2;
}
};
setInterval(func, 4000);
如果您在if子句中增加值,它會立即匹配下一個if子句。一個簡單而常見的錯誤。 –