javascript中document.appendChild和document.body.appendChild的问题
Posted huaan011
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript中document.appendChild和document.body.appendChild的问题相关的知识,希望对你有一定的参考价值。
在IE7中
var conentDiv = document.createElement("div");
document.body.appendChild(conentDiv);
document.appendChild(conentDiv);
都不会报错,但是在IE11中
document.appendChild(conentDiv);会报错:javascript runtime error:HierarchyRequestError
由于 div是document.body的子元素,而不是 document的子元素。
以上是关于javascript中document.appendChild和document.body.appendChild的问题的主要内容,如果未能解决你的问题,请参考以下文章
javascript - 使用另一个函数中的变量 javascript - '今天未在对象中定义'
javascript中Function.prototype的问题