我正在通過Codecademy試圖學習Javascript。當我到達紙/搖滾/剪刀部分時,我想出了一些代碼來展示我的朋友。這不是一個真正的遊戲。我讓它變得有趣。無論如何,我在Codecademy中寫了它,它工作。然後我複製/粘貼到textedit(我使用的是mac/safari),我添加的都是響應的標題標籤。但是現在提示不起作用。幫助noob。爲什麼不提示工作?
<!DOCTYPE html>
<html>
<body>
<h1>
Rock. Paper. Scissors.
</h1>
<script>
var yourChoice = prompt("Choose your weapons: Rock, paper, or scissors.")
if(yourChoice === "rock")
document.write("<h1 style='text-align:center;font-size:50;'>Ha! I defeated you with the cunning of paper!</h1>")
if(yourChoice === "paper")
document.write("<h1 style='text-align:center;font-size:50;'>Muahaha! I have cut you down with the villanny of scissors!"</h1>)
if(yourChoice === "scissors")
document.write("<h1 style='text-align:center;font-size:50;'>Go and weep! For I have crushed your devilish scissors with the might of my rock!"</h1>)
</script>
</body>
</html>
希望這不是超級明顯的,我只是因爲某種原因失明。謝謝你,提前。
我剛看到一個複製/粘貼問題。 – Euroclydon37