JavaScript document.writeln 基本語法
document.writeln("每一行要顯示的字串內容");
請將每一行要顯示的字串內容放在 document.writeln 的小括號內,接著可以寫第二行的 document.writeln 輸出內容 ... 以此類推,在程式碼中換行寫 document.writeln 方式,會在網頁上顯示一行一行的效果,這與 document.write 不分行的效果有很大的差異。
JavaScript document.writeln 範例
<pre>
<script>
document.writeln("Welcome to Wibibi.");
document.writeln("Have a good time.");
</script>
</pre>
<script>
document.writeln("Welcome to Wibibi.");
document.writeln("Have a good time.");
</script>
以上範例輸出結果如<script>
document.writeln("Welcome to Wibibi.");
document.writeln("Have a good time.");
</script>
</pre>
<script>
document.writeln("Welcome to Wibibi.");
document.writeln("Have a good time.");
</script>
Welcome to Wibibi.
Have a good time.
Welcome to Wibibi. Have a good time.
誠如第一段所說,每一行的 document.writeln 必須全部包在 <pre> 標籤內才會有效果,由範例的比較可以看到,第一組包在 <pre> 標籤內的兩行 document.writeln 的確是以兩行的方式輸出,第二組並未使用 <pre> 標籤包著,輸出結果就變成一行而已。Have a good time.
Welcome to Wibibi. Have a good time.
相關主題研究