DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> javascript中的document.open()方法使用介紹
javascript中的document.open()方法使用介紹
編輯:關於JavaScript     
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>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved