W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <body> <p>单击该按钮以创建一个带有粉红色背景颜色和一些文本的 DIV 元素。</p> <button onclick="myFunction()">试一试</button> <script> function myFunction() { var x = document.createElement("DIV"); var t = document.createTextNode("This is a div element."); x.setAttribute("style", "background-color: pink;"); x.appendChild(t); document.body.appendChild(x); } </script> </body> </html>