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>