您可以尝试运行以下代码,以了解如何使用JavaScript替换JavaScript中的文档内容-
<!DOCTYPE html> <html> <body> <p>Click and replace this content.</p> <button onclick = "Display()">Replace</button> <script> function Display() { document.open("text/html","replace"); document.write("<p>Demo text!</p>"); document.close(); } </script> </body> </html>