下面有更多示例。
这个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. |
没有任何 |
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 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!