jQuery的遍历同胞结构设计函数为什么是elem.nodeType !== 1呢?谢谢各位!
谢谢各位!jQuery的遍历同胞结构设计函数为什么是elem.nodeType !== 1而不是elem.nodeType !== 9(祖先遍历结构设计是判断nodeTyp是否为9)
function sibling(cur, dir) {
while ((cur = cur[dir]) && cur.nodeType !== 1) {}
return cur;
}
谢谢各位!jQuery的遍历同胞结构设计函数为什么是elem.nodeType !== 1而不是elem.nodeType !== 9(祖先遍历结构设计是判断nodeTyp是否为9)
function sibling(cur, dir) {
while ((cur = cur[dir]) && cur.nodeType !== 1) {}
return cur;
}
2015-08-30
举报