2
當我遇到很多問題時,我正在嘗試製作文本冒險遊戲。這是預料之中的,因爲我對JavaScript以及編碼都相當陌生。我遇到的其中一個問題是我添加了一些代碼來防止某人不選擇某種東西的可能性。無論我給出提示窗口的什麼輸入,它都變得沒有反應。JavaScript While-Loop無法正常工作
這裏的,我認爲是負責代碼:
var weapon = prompt("(prompt text)");
while (weapon != "axe" || weapon != "bow and arrow" || weapon != "rubber chicken"); {
alert("That's not an option!");
weapon = prompt("(prompt text)");
}
它也必須是'&&' – zerkms