HTML DOM write() 方法
write() 方法可向文档写入 HTML 表达式或 JavaScript 代码。
语法
document.write(exp1,exp2,exp3,...)
参数 | 描述 |
---|---|
exp1,exp2,exp3,... | 可选。要写入的输出流。多个参数可以列出,他们将按出现的顺序被追加到文档中 |
浏览器支持
所有主要浏览器都支持 write() 方法。
在线实例
实例
向输出流写入一些文本:
<html> <body> <script> document.write("Hello World!"); </script> </body> </html>
实例
向输出流写入一些格式文本:
<html> <body> <script> document.write("<h1>Hello World!</h1><p>Have a nice day!</p>"); </script> </body> </html>
实例
write() 与 writeln() 的区别:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>牛客教程(nowcoder.com)</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>