document write()和innerHTML的区别
document.write()和innerHTML的功能类似,操作标签的内容,但是前者只能操作body的内容
区别 :1.document.write()会覆盖标签中已有的内容,但是不会覆盖document.write()添加的内容。
2.document.write()只能操作body的内容
3.document.write()==document.body.innerHTML
document.write()和innerHTML的功能类似,操作标签的内容,但是前者只能操作body的内容
区别 :1.document.write()会覆盖标签中已有的内容,但是不会覆盖document.write()添加的内容。
2.document.write()只能操作body的内容
3.document.write()==document.body.innerHTML
相关推荐