Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

จะใช้ 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>