W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<html> <body> <h1 id="header">旧标题</h1> <script type="text/javascript"> document.getElementById('header').innerHTML="新标题" </script> <p>请注意,原始的文本是“旧标题”。</p> </body> </html>