编辑下面的代码:
【加编码】
查看效果 »
<html> <body> <p id="p1">Hello world!</p> <script> function ChangeText() { document.getElementById("p1").innerHTML="New text!"; } </script> <input type="button" onclick="ChangeText()" value="Change text"> </body></html>
结果:
【此窗口】
帮助?