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

firstElementChild

时间:2015-08-07 00:03:53      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

firstElementChild用于在高版本的浏览器中获取第一个子节点。在IE6-8中是不兼容的,他们应该用firstChild。在写的时候用一个if语句判断一下就好了。

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
<ul id="ull">
    <li>1</li>
    <li>2</li>
    <li>3</li>
</ul>
<script>
    var oUl = document.getElementById(ull );
    oUl.firstElementChild.style.background = red;
</script>
</body>
</html>

if(oUl.firstElementChild)技术分享

firstElementChild

标签:

原文地址:http://www.cnblogs.com/zhuni/p/4709368.html

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