我是编程新手,我自学了HTML和Javascript以及Python。我在学习这些语言的时候,我觉得我可以用JavaScript做我在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>
2条答案
按热度按时间fkaflof61#
正如Chris L已经指出的那样,其中有很多错别字,尽管Juhana是对的,但控制台中打印的错误对于初学者来说很难破译(尽管你必须学习它们,尤其是作为初学者!)。
这里是一些精简的模板,你可以玩
o7jaxewo2#
我很高兴你正在学习编程,我很乐意帮助你的代码。我注意到你的代码中有一些错误,可能会导致它无法正常工作。这里有一些建议来修复它们:
<button type="button" id="ChooseFirst" onclick="darkRoom()">First choice</button>
function ocean() {
我希望这些建议能帮助你修复你的代码,让它正常工作。祝你的游戏好运!