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>