W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <body> <p>单击该按钮以创建一个 HEADER 元素,其中包含一个带有一些文本的 h3 元素。</p> <button onclick="myFunction()">试一试</button> <script> function myFunction() { var x = document.createElement("HEADER"); x.setAttribute("id", "myHeader"); document.body.appendChild(x); var y = document.createElement("H3"); var t = document.createTextNode("This is a h3 element in a header element"); y.appendChild(t); document.getElementById("myHeader").appendChild(y); } </script> </body> </html>