JavaScript 中的document.open()方法
document.open()方法開啟一個新的文件,並用document.write()方法編寫文件的內容,然後用document.close()方法關閉文件操作,並強制瀏覽器立即重新整理頁面內容。
例如:
<script type="text/javascript">
window.onload=hello;
function hello(){
var msg = "JavaScript真好玩!";
document.open();
document.write(msg);
document.close();
}
</script>