首页 > 代码库 > Javascript 中判断是谷歌浏览器和IE浏览器的方法
Javascript 中判断是谷歌浏览器和IE浏览器的方法
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | <!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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。