HTML DOM 文档 writeln()
下面还有更多示例。
描述
The writeln()
方法直接写入打开的 (HTML) 文档流。
The writeln()
方法与 write() 方法相同,只是在每个语句之后添加一个换行符 (U+000A)。
警告
The writeln()
方法在已加载的文档上使用时会删除所有现有的 HTML。
The writeln()
方法不能在 XHTML 或 XML 中使用。
语法
document.writeln(exp1, exp2, ..., expN)
参数
参数 | 描述 |
exp1,... | 可选。 输出流。 多个参数将按出现顺序追加到文档中。 |
返回值
无 |
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 中使用 writeln() 没有意义。
它仅在写入文本文档 (类型=".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 |
是 | 是 | 是 | 是 | 是 | 是 |