Javascript 中判断是谷歌浏览器和IE浏览器的方法

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
    <style type="text/css"></style>
    <script type="text/javascript">
        window.onload = function () {
            var oUl = document.getElementById("ul1");
            if (oUl.firstElementChild) {
                //谷歌浏览器
                oUl.firstElementChild.style.background = "red";
            }
            if (oUl.firstChild) {
                //IE 浏览器
                oUl.firstChild.style.background = "red";
            }
        }
    </script>
</head>
<body>
    <ul id="ul1">
        <li></li>
         <li></li>
         <li></li>
         <li></li>
         <li></li>
    </ul>
</body>
</html>

IE 有firstChild所以是true,相反的,谷歌没有,会返回undifined

posted @ 2014-06-01 22:56  ICupid  阅读(1165)  评论(0编辑  收藏  举报