คุณสามารถลองใช้รหัสต่อไปนี้เพื่อเรียนรู้วิธีใช้ 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>