document.write 與 document.writeln 基本語法
document.write("要輸出的字串"); document.writeln("要輸出的字串");
兩者用法幾乎相同,看似沒什麼差異,其實效果在程式碼編寫時才能夠展現出來。
document.write 與 document.writeln 範例
<pre>
<script language="javascript">
document.writeln("Welcome to Wibibi.");
document.writeln("Have a good time.");
document.write('Welcome to Wibibi.');
document.write('Have a good time.');
</script>
</pre>
以上範例輸出結果<script language="javascript">
document.writeln("Welcome to Wibibi.");
document.writeln("Have a good time.");
document.write('Welcome to Wibibi.');
document.write('Have a good time.');
</script>
</pre>
Welcome to Wibibi.
Have a good time.
Welcome to Wibibi.Have a good time.
其實 document.write 也可以輸出換行效果唷!不過需要加上些 HTML 換行標籤,例如 <br> 或 <p> 標籤,一樣可以達到換行的效果,而且不需要使用 <pre></pre> 標籤包裝,雖然麻煩點,但也可以做出與 document.writeln 同樣的效果,自由選擇囉!
相關主題研究