欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2023-12-30 19:00:40
...
<!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

上一篇:

下一篇: