JavaScript很新穎。正在更改文字
嘗試在單擊按鈕時將文本「段落已更改」更改爲「新建」。不太確定這是爲什麼發生。
感謝
<!DOCTYPE html>
<html>
<body>
<h1>My First Web Page</h1>
<p id="demo">My first paragraph.</p>
<script>
function firstFunction(){
document.getElementByID("demo").innerHTML="New";
</script>
<button type="button" onclick="firstFunction()">Try it</button>
</body>
</html>
包括body標籤的結束前你的腳本。 –
我有,請參閱編輯 –
不,你沒有。包括按鈕後。 –