我不确定为什么这不起作用,似乎没有任何拼写错误,对我来说,这是功能代码,但是
元素单击按钮时不会更改。没有错误消息。任何帮助赞赏。
<!DOCTYPE HTML>
<html>
<body>
<h1>Testing Page</h1>
<p id="hello">This will change.</p>
<p>
<button type="button" onclick="click()">Click Dis Ahlie</button>
</p>
<script type="text/javascript">
function click(){document.getElementById("hello").innerHTML="Hello";}
</script>
</body>
</html>