# 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
的话,文本会合并。
insert
与document.write
区别有:
insert
方法不是docuemnt对象所独有的,其他的dom对象都可以使用insert
调用会清除原本的内容,多个insert的调用会使用最后一次insert的内容
以上是关于# document.write和document.insert区别的主要内容,如果未能解决你的问题,请参考以下文章
函数调用中的 document.write 和 innerHTML
Javascript 新行 - document.write 结束