childNodes&children区别
2017-04-10 11:00:54 1 举报
childNodes与children区别
作者其他创作
大纲/内容
prototype
NodeList原型对象
Object()上帝构造函数[object Function]
__proto__
div.childNodes[object NodeList]
div.children[object HTMLCollection]
()万能函数原型对象[object Function]
constructor
JSON对象
无constructor
HTMLCollection()构造函数[object Function]
Function()万能函数构造函数[object Function]
Object上帝原型对象[object Object]
注意点: 1. 不能 new NodeList() ; // 会报错 2. 不能 new HTMLCollection() ; // 会报错 // 原因 Illegal constructor // 非法 构造器 3. HTML 结构 //
NodeList()构造函数[object Function]
HTMLCollection原型对象[object HTMLCollection]
NodeList原型对象[object NodeList]
收藏
0 条评论
下一页