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

document.writeln() 方法 (method) 以主動分行的方式,將字串 (string) 寫入網頁中。



舉例如下
<!DOCTYPE html>
<html>
<head>
<title>HTML DOM DEMO</title>
</head>
<body>
<pre>
<script>
document.writeln("There");
document.writeln("is");
document.writeln("no");
document.writeln("spoon");
document.writeln(".");
document.close();
</script>
</pre>
</body>
</html>

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


此例的 JavaScript 程式從第 9 行到第 14 行
document.writeln("There");
document.writeln("is");
document.writeln("no");
document.writeln("spoon");
document.writeln(".");
document.closeln();


這裡共呼叫 writeln() 五次,每一次都以沒有空格區分的英文單字與句點當參數 (parameter) 。


瀏覽器 (broswer) 開啟,結果如下



結果顯而易見,一行印出一個單字。


這裡的 writeln() 是放在 <pre> 元素中,如果放在其他地方,可能只會顯示一個空白符號。


中英文術語對照
方法method
字串string
參數parameter
瀏覽器broswer


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


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


參考資料
https://developer.mozilla.org/en/DOM/document.writeln
http://www.w3.org/TR/2000/WD-DOM-Level-2-HTML-20001113/html.html#ID-35318390

沒有留言: