标签:
firstChild与lastChild 兼容Ie6,7,8 返回指定节点的首个子节点与返回指定节点的最后一个子节点
firstElementChild与lastElementChild 不兼容低版本的浏览器
兼容的写法:
var first=e.firstElementChild||e.firstChild; var last=e.lastElementChild||e.lastChild;
firstChild,firstElementChild,lastChild,lastElementChild 的用法与兼容
标签:
原文地址:http://www.cnblogs.com/wujidns/p/4441751.html