目录

HTML DOM 文档 writeln()

示例

document.writeln("Hello World!");
document.writeln("Have a nice day!");
亲自试一试 »

下面有更多示例。


描述

这个writeln()方法直接写入打开的 (HTML) 文档流。

这个writeln()方法与 write() 方法相同,只是在每个语句后写入换行符 (U+000A)。

警告

这个writeln()方法在加载的文档上使用时会删除所有现有的 HTML。

这个writeln()方法不能在 XHTML 或 XML 中使用。


语法

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

参数

Parameter Description
exp1,... Optional.
The output stream.
Multiple arguments are appended to the document in order of occurrence.

返回值

没有任何

write() 和 writeln() 之间的区别

writeln() 在每个语句后添加一个换行符。 write() 没有。

示例

document.write("Hello World!");
document.write("Have a nice day!");
document.write("<br>");
document.writeln("Hello World!");
document.writeln("Have a nice day!");
亲自试一试 »

笔记

使用起来没有任何意义写入()在 HTML 中。

它仅在写入文本文档时有用(type=".txt")。

HTML 中会忽略换行符。

如果您想在 HTML 中换行,则必须使用段落或 <br>:

示例

document.write("Hello World!");
document.write("<br>");
document.write("Have a nice day!");
亲自试一试 »
document.write("<p>Hello World!</p>");
document.write("<p>Have a nice day!</p>");
亲自试一试 »

浏览器支持

document.write所有浏览器都支持:

Chrome Edge Firefox Safari Opera IE
Yes Yes Yes Yes Yes Yes