HTML DOM 快速導覽 - 文件物件 document 的方法 open()

document.open() 為開啟輸入串流的方法 (method) 。



open() 通常用在 write() 或 writeln() 之前,舉例如下
function run() {
    document.open();
    document.write("There is no spoon.");
}

/* 《程式語言教學誌》的範例程式
     http://pydoing.blogspot.com/
     檔名:document037.js
     功能:示範 JavaScript 程式 
     作者:張凱慶
     時間:西元 2011 年 8 月 */


此例先呼叫 open() 結束輸入串流,然後在瀏覽器 (broswer) 寫入 There is no spoon.
document.open();
document.write("There is no spoon.");


我們以下面的 HTML 文件載入
<!DOCTYPE html>
<html>
<head>
<title>HTML DOM DEMO</title>
<script src="document037.js" type="text/javascript"></script>
</head>
<body>
<input type="button" value="RUN" onclick="run();">
</body>
</html>

<!-- 《程式語言教學誌》的範例程式
     http://pydoing.blogspot.com/
     檔名:document037.html
     功能:示範 JavaScript 程式 
     作者:張凱慶
     時間:西元 2011 年 8 月 -->


瀏覽器開啟,按下 RUN 就會顯示結果



我們可以看到瀏覽器左上方有個圓圈不停的在轉,因為上例只有開啟輸入串流,沒有結束輸入串流,所以瀏覽器仍一直不斷的等待輸入串流。


中英文術語對照
方法method
瀏覽器broswer


您可以繼續參考
基本概念
文件物件 document


相關目錄
HTML DOM 快速導覽
JavaScript 教材
首頁


參考資料
https://developer.mozilla.org/en/DOM/document.open
http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-72161170

沒有留言: