运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Document Object</h1> <h2>The open() Method</h2> <p>If document.write() is used on a closed document, document.open() is automatically called.</p> <p>This will delete existing content.</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { document.write("<h1>Hello World</h1>"); } </script> </body> </html>