运行 ❯
获取你
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Document Object</h1> <h2>The body Property</h2> <p>Click "Append" to create a p element and append it to the document's body:</p> <button onclick="myFunction()">Append</button> <script> function myFunction() { const para = document.createElement("p"); const node = document.createTextNode("This is a paragraph."); para.appendChild(node); document.body.appendChild(para); } </script> </body> </html>