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

简单明了区分IE,Firefox,chrome主流浏览器

时间:2018-10-23 14:28:47      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:style   one   audio   lower   ie10   control   none   efi   navigator   

简单明了判断浏览器
Firefox:
typeof navigator !== ‘undefined‘ && navigator.userAgent.toLowerCase().indexOf(‘firefox‘) > -1;

chrome

typeof navigator !== ‘undefined‘ && navigator.userAgent.toLowerCase().indexOf(‘chrome‘) > -1;

IE10 及之前

typeof navigator !== ‘undefined‘ && navigator.userAgent.toLowerCase().indexOf(‘ie‘) > -1;

IE11
typeof navigator !== ‘undefined‘ && navigator.userAgent.toLowerCase().indexOf(‘trident‘) > -1;

简单明了区分IE,Firefox,chrome主流浏览器

标签:style   one   audio   lower   ie10   control   none   efi   navigator   

原文地址:https://www.cnblogs.com/hill-foryou/p/9835747.html

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