运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往空间
<!DOCTYPE html> <html> <body> <h1>The Document Object</h1> <h2>The body Property</h2> <p>Change the HTML content of this document.</p> <script> document.body.innerHTML = "Some new HTML content"; </script> </body> </html>