爲什麼我的警惕始終顯示了蒙山下面的代碼:不等於條件不工作(JS)
var choix = "a";
while (choix.toUpperCase() !== "Q") {
choix = prompt(hello + "\n");
if((choix.toUpperCase() !== "A") || (choix.toUpperCase() !== "L") || (choix.toUpperCase() !== "Q")) {
alert("Choisissez L, A ou Q !");
}
}
使用''&&代替''||在'if'聲明。 – Tushar
當然,我真的很愚蠢在那一個 – webdev