天天看点

HTML DOM write() 方法

HTML DOM write() 方法

Document 对象

write() 方法可向文档写入 HTML 表达式或 JavaScript 代码。

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

参数

描述

exp1,exp2,exp3,...

可选。要写入的输出流。多个参数可以列出,他们将按出现的顺序被追加到文档中

HTML DOM write() 方法
HTML DOM write() 方法
HTML DOM write() 方法
HTML DOM write() 方法
HTML DOM write() 方法

所有主要浏览器都支持 write() 方法

向输出流写入一些文本:

<html>

<body>

<script>

document.write("Hello World!");

</script>

</body>

</html>

向输出流写入一些格式文本:

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

write() 与 writeln() 的区别:

<!DOCTYPE html>

<head>

<meta charset="utf-8">

<title>菜鸟教程(runoob.com)</title>

</head>

<p>注意write()方法不会在每个语句后面新增一行:</p>

document.write("Have a nice day!");

<p>注意writeln()方法在每个语句后面新增一行:</p>

document.writeln("Hello World!");

document.writeln("Have a nice day!");

HTML DOM write() 方法