我正在尝试每4秒更改一次背景,但它会直接跳到第二个条件并且不再更改。为什么会这样?
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);
答案 0 :(得分:6)
尝试使用else if
var func = function () {
'use strict';
if (time === 1) {
document.getElementById("top-background").style.backgroundColor = "#000";
time += 1;
}
else if (time === 2) {
document.getElementById("top-background").style.backgroundColor = "#aaa";
time += 1;
}
else if (time === 3) {
document.getElementById("top-background").style.backgroundColor = "#d5d5d5";
time -= 2;
}
};
答案 1 :(得分:2)
当时间等于1时,您将时间加1。这使时间等于2.之后,你检查时间是否等于2,它是!这使您继续向上,直到达到时间等于3的点,然后再将其重置为1。
您需要一种方法来检查一个条件。你可以使用if和elseifs:
来做到这一点if (time == 1) {
// Code...
} else if (time == 2) {
// Code...
} else {
// Code...
// Because it's not equal to 1 or 2, it must be 3.
}
或者,您也可以使用Javascript的Switch语句。
switch(time) {
case 1:
// Code...
break;
case 2:
// Code...
break;
case 3:
// Code...
break;
default:
// Something went wrong and it's not 1, 2, or 3
}