码迷,mamicode.com
首页 > 其他好文 > 详细

DOM节点相关操作(兼容)

时间:2014-11-19 10:46:27      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:des   io   ar   for   on   cti   c   res   type   

//获取元素子节点
function getChild(parent) {
  var childs = parent.childNodes,
  result = [];
  for (var i = 0; cl = childs.length, i < cl; i++) {
    if(childs[i].nodeType == 1) {
      result.push(childs[i])
    }
  };
  return result;
};

DOM节点相关操作(兼容)

标签:des   io   ar   for   on   cti   c   res   type   

原文地址:http://www.cnblogs.com/lw9413/p/4107545.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!