编辑下面的代码:
【加编码】
查看效果 »
<html> <body> <h1>我的第一个 Web 页面</h1> <p id="demo">一个段落。</p> <button type="button" onclick="myFunction()">点击这里</button> <script> function myFunction() { document.getElementById("demo").innerHTML="我的第一个 JavaScript 函数"; } </script> </body> </html>
结果:
【此窗口】
帮助?