如何使用JavaScript用JavaScript替换文档的内容?

您可以尝试运行以下代码,以了解如何使用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>