children和childNodes差异【转】
1,childnodes属性,标准的,它返回指定元素的子元素集合,包括html节点,所有属性,文本。可以通过nodetype来判断是哪种类型的节点,只有当nodetype==1时才是元素节点,2是属性节点,3是文本节点。
有些人错误的使用()去取该集合元素,下表列出各浏览器对childnodes(i)的支持情况:
2,有时候需要获取指定元素的第一个html子节点(非属性/文本节点),最容易想到的就是firstchild属性。代码中第一个html节点前如果有换行,空格,那么firstchild返回的就不是你想要的了。可以使用nodetype来判断下。
js代码
function getfirst(elem){ for(var i=0,e;e=elem.childnodes\[i++\];){ if(e.nodetype==1) return e; } }
3,children属性,非标准的,它返回指定元素的子元素集合。经测试,它只返回html节点,甚至不返回文本节点。且在所有浏览器下表现惊人的一致。和childnodes一样,在firefox下不支持()取集合元素。因此如果想获取指定元素的第一个html节点,可以使用children[0]来替代上面的getfirst函数。需注意children在ie中包含注释节点。
相关资源:
http://www.w3.org/tr/2000/rec-dom-level-2-core-20001113/core.html#id-1451460987
http://www.w3.org/tr/2004/rec-dom-level-3-core-20040407/core.html#id-1451460987
http://www.w3.org/tr/2004/rec-dom-level-3-core-20040407/core.html#id-536297177
https://developer.mozilla.org/en/dom/element.children
http://msdn.microsoft.com/en-us/library/ms537446%28vs.85%29.aspx
文章来自:
推荐阅读
-
children和childNodes差异【转】
-
JavaScript操作DOM元素的childNodes和children区别_javascript技巧
-
JavaScript中Element与Node的区别,children与childNodes的区别【转】
-
关于childNodes和children的知识
-
原生JS之lastChild和lastElementChild、childNodes和children区别
-
JavaScript操作DOM元素的childNodes和children区别_javascript技巧
-
JavaScript中Element与Node的区别,children与childNodes的区别【转】
-
关于childNodes和children的知识
-
children和childNodes差异【转】