1. 首页
  2. 云计算
  3. 微服务
  4. js 获取子节点函数 (兼容FF与IE)

js 获取子节点函数 (兼容FF与IE)

上传者: 2020-12-13 10:22:21上传 PDF文件 14.27KB 热度 13次
代码如下:function getFirstChild(obj) { var result = obj.firstChild; while (!result.tagName) { result = result.nextSibling; } return result; } function getNextChild(obj) { var result = obj.nextSibling; while (!result.tagName) { result = result.nextSibling; } return result; }
用户评论