Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm thế nào để sử dụng JavaScript để thay thế nội dung của một tài liệu bằng JavaScript?

Bạn có thể thử chạy đoạn mã sau để tìm hiểu cách sử dụng JavaScript để thay thế nội dung của tài liệu bằng JavaScript -

Ví dụ

<!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>