HTML DOM writeln() 方法

HTML DOM Document 对象参考手册 HTML DOM Document 对象参考手册


定义和用法

writeln() 方法与 write() 方法作用相同,外加可在每个表达式后写一个换行符。

语法

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


提示和注释

提示:在编写 <pre> 标记的内容时,该方法很有用。


实例

<html>
<body>

<script type="text/javascript">
document.writeln("Hello World!");
</script>

</body>
</html>

使用 document.write() 向输出流写文本

使用 document.write() 向输出流写 HTML

使用多参数的 document.write()



HTML DOM Document 对象参考手册 HTML DOM Document 对象参考手册

粤ICP备11097351号-1