document.write()

本页内容
上一节: Prop_doc_url 下一节: Met_doc_writeln

HTML DOM write() 方法

Document 对象

定义和用法

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

语法

document.write(exp1,exp2,exp3,...)
参数 描述
exp1,exp2,exp3,... 可选。要写入的输出流。多个参数可以列出,他们将按出现的顺序被追加到文档中

浏览器支持

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

实例 1

向输出流写入一些文本:


示例

<html>

<body>

<script>

document.write("Hello World!");

</script>

</body>

</html>

实例 2

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


示例

<html>

<body>

<script>

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

</script>

</body>

</html>

实例 3

write() 与 writeln() 的区别:


示例

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>小白教程(xiaobai.wang)</title>

</head>

<body>

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

<script>

document.write("Hello World!");

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

</script>

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

<script>

document.writeln("Hello World!");

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

</script>

</body>

</html>

Document 对象

上一节: Prop_doc_url 下一节: Met_doc_writeln
此页面最后编辑于2022年8月19日 (星期五) 11:22。