# document.write和document.insert区别

Posted freesfu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了# document.write和document.insert区别相关的知识,希望对你有一定的参考价值。

document.write和document.insert区别

document对象也就是这个html文档的对象,当html页面被加载到浏览器中所对应的对象就是document对象。

document.write在文档加载完成以后调用会覆盖整个文档,但在文档加载过程中调用的话就会插入到文档当中,如果是多次调用document.wirte的话,文本会合并。

insertdocument.write区别有:

  • insert方法不是docuemnt对象所独有的,其他的dom对象都可以使用
  • insert调用会清除原本的内容,多个insert的调用会使用最后一次insert的内容

以上是关于# document.write和document.insert区别的主要内容,如果未能解决你的问题,请参考以下文章

document.write

函数调用中的 document.write 和 innerHTML

Javascript 新行 - document.write 结束

如何在 document.write('') 之后显示隐藏按钮?

document.write()

如果使用 document.write,则无法以编程方式插入 js