我是編程新手,我自學HTML和Javascript以及python。 我在學習這些語言方面得到了一點,我覺得我可以使用javascript在html中處理其中一件事情。 我遇到了一個問題,無論出於何種原因,我的代碼根本無法工作。 我仔細檢查了一切,我很確定它都在正確的位置,所有的字符都是正確的。 這是我的代碼到目前爲止,完整。我仍處於開發早期階段,我知道這還不完整。爲什麼我的腳本不能在這個html文檔中工作?
<!doctype html>
<html>
<head>
<title>Python game</title>
</head>
<body>
<p>Enter your choice by clicking on the buttons below the paragraph<p>
<p id="newText">kjgkhg</p>
<button type="onClick" id="ChooseFirst">First choice</button>
<button type="onclick" id="chooseSecond">Second choice</button>
<button type="onclick" id="choosethird">Third choice</button>
<script>
document.getElementById("newText").innerHTML = "why doesn't this work?";
funciton darkRoom() {
vars x=document.getElementById("newText").innerHTML ;
document.getElementById("newText").innerHTML = "You wake up in a dark room with no \
idea how you go there. You can make out the outline of three doors\
labeled '1', '2', and '3' directly in front of you. There is no door behind you.\
Which door do you enter?";
}
function lions() {
}
function tiger() {
}
functoin bear() {
}
function brickRoad() {
}
function quickSand() {
}
function sizePuzzle() {
}
function riddlesOnWall() {
}
function wolfSheepCabbage() {
}
function duckHunt() {
}
function hangman() {
}
function goldRoom() {
}
function ocean {
}
function winScreen() {
}
function youDie() {
}
</script>
</body>
</html>
發揮你有很多簡單的錯別字在你的代碼。另外,javascript區分大小寫 –
打開瀏覽器的JavaScript控制檯。錯誤在那裏打印。 – JJJ
雖然我在這裏正確使用駱駝案例。在區分大小寫的情況下我搞砸了什麼? – Steve