HTML DOM writeln() 方法

2018-12-02 13:51 更新

HTML DOM writeln() 方法

Document 對象參考手冊 Document 對象

定義和用法

writeln() 方法與 write() 方法作用相同,外加可在每個表達式后寫一個換行符。

語法

document.writeln(exp1,exp2,exp3,...)

參數(shù) 描述
exp1,exp2,exp3,... 可選.要寫入的輸出流。它們將按順序被追加到文檔中。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持 writeln() 方法


實例

實例

write()和writeln()之間的差異:

<html>
<body>

<p>Note that write() does NOT add a new line after each statement:</p>

<pre>
<script>
document.write("Hello World!");
document.write("Have a nice day!");
</script>
</pre>


<p>Note that writeln() add a new line after each statement:</p>

<pre>
<script>
document.writeln("Hello World!");
document.writeln("Have a nice day!");
</script>
</pre>

</body>
</html>

嘗試一下 ?


Document 對象參考手冊 Document 對象
以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號