我在學習如何使用javascript做switch語句。你們能幫我怎麼把這個轉換成switch語句嗎?javascript:switch語句
if (x == ix && y == iy){//should be the default
x.style.backgroundColor = 'white';
}
if(x < ix){
x.style.backgroundColor = 'red';
}
else if(x > ix){
x.style.backgroundColor = 'blue';
}
if(y < iy){
x.style.backgroundColor = 'green';
}
else if(y > iy){
x.style.backgroundColor = 'yellow';
}
我不會重寫這個使用switch語句,它也不是真的可能。順便說一句,如果'x == ix'但是'y!= iy',那麼你可能會遇到某種情況,通過裂縫落下。你應該仔細檢查你的邏輯。 –
你對結果做了一個小圖示嗎? 'y'的值優先於'x'的優先級。 –
什麼是'x','y','ix'和'iy'? – Taurus