JavaScript 中document.write() 详细用法介绍
Posted coderhf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript 中document.write() 详细用法介绍相关的知识,希望对你有一定的参考价值。
在javascript中document.write()函数可以向文档写入html表达式或JavaScript代码,用法“document.write(exp1,exp2,exp3,....)”,该函数可接受任何多个参数,并将其写入文档中。
document.write() 说明
虽然根据 DOM 标准,该方法只接受单个字符串作为参数。
document.write() 实例
<html> <body> <script type="text/javascript"> document.write("Hello World!"); </script> </body> </html>
以上就是JavaScript document.write() 用法的详细内容。
更多学习内容观看我的知乎:打造全网web高级前端工程师资料库(总目录)看完学的更加快,知识更牢固。你值得拥有(持续更新)~
以上是关于JavaScript 中document.write() 详细用法介绍的主要内容,如果未能解决你的问题,请参考以下文章