我不知道是什麼問題,但是這段代碼在我的電腦上不起作用。我從我參加的課程中複製了它(完整的Web開發人員課程)。這在課程中運作良好,但與我無關。請有人告訴我什麼是我的股票問題。爲什麼這個JavaScript不起作用?
<!doctype html>
<html>
<head>
<title>Learning Javascript</title>
<meta charset="utf-8" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<button id="textChanger">Change first div text</button>
<div id="firstDiv">This is some text</div>
<button id="textAppender">Append some text</button>
<div id="secondDiv">Javascript is...</div>
<button id="textCreator">Create some text</button>
<div id="emptyDiv"></div>
<script type="text/javascript">
document.getElementById("textChanger").onclick=function() {
document.getElementById("firstDiv").innerHTML="This is
awesome!";
}
document.getElementById("textAppender").onclick=function() {
document.getElementById("secondDiv").innerHTML=document.getElementById("secondDi
v").innerHTML + "great!";
}
document.getElementById("textCreator").onclick=function() {
document.getElementById("emptyDiv").innerHTML="<ul><li>Cat</
li><li>Dog</li></ul>";
}
</script>
</body>
</html>
「一段代碼不工作」 - 你檢查錯誤控制檯? –
添加您擁有或出錯的任何錯誤。 – admix