博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js判断浏览器类型
阅读量:5895 次
发布时间:2019-06-19

本文共 1397 字,大约阅读时间需要 4 分钟。

if(window.navigator.userAgent.toLowerCase().indexOf("msie") > 0){

    return “IE”;

}

if(window.navigator.userAgent.toLowerCase().indexOf("msie 8.0") > -1){

    return “IE 8”;

}

firefox判断应该是ua.match(/firefox[\/\s](\d+)/);

 

var isIE=!!window.ActiveXObject; 

var isIE6=isIE&&!window.XMLHttpRequest; 
var isIE8=isIE&&!!document.documentMode; 
var isIE7=isIE&&!isIE6&&!isIE8; 
if (isIE){ 
if (isIE6){ 
alert("ie6"); 
}else if (isIE8){ 
alert("ie8"); 
}else if (isIE7){ 
alert("ie7"); 

 

f(navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.match(/6./i)=="6."){ 

alert("IE 6"); 
else if(navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.match(/7./i)=="7."){ 
alert("IE 7"); 
else if(navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.match(/8./i)=="8."){ 
alert("IE 8"); 
else if(navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.match(/9./i)=="9."){ 
alert("IE 9"); 

 

 

if(navigator.userAgent.indexOf("Opera") != -1) { 

alert('Opera'); 
else if(navigator.userAgent.indexOf("MSIE") != -1) { 
alert('Internet Explorer'); 
else if(navigator.userAgent.indexOf("Firefox") != -1) { 
alert('Firefox'); 
else if(navigator.userAgent.indexOf("Netscape") != -1) { 
alert('Netscape'); 
else if(navigator.userAgent.indexOf("Safari") != -1) { 
alert('Safari'); 
else{ 
alert('无法识别的浏览器。'); 

转载于:https://www.cnblogs.com/fang51/p/4496776.html

你可能感兴趣的文章
Oracle中查看所有表和字段以及表注释.字段注释
查看>>
UVA 10564 - Paths through the Hourglass (dp)
查看>>
Web工程师的工具箱 | 酷壳 - CoolShell.cn
查看>>
ASP.NET Web API自身对CORS的支持: EnableCorsAttribute特性背后的故事
查看>>
Eclipse 常用快捷键
查看>>
INDEX--索引页上存放那些数据
查看>>
INDEX--关于索引的琐碎
查看>>
sql查看所有表大小的方法
查看>>
nexus7 1代 刷4.2.2+root[转]
查看>>
UNIX网络编程读书笔记:TCP输出、UDP输出和SCTP输出
查看>>
扩展 DbUtility (1)
查看>>
iOS开发UI篇—使用picker View控件完成一个简单的选餐应用
查看>>
使用UITableView实现图片视差效果
查看>>
CentOS RHEL 安装 Tomcat 7
查看>>
erlang如何有效地监视大量的并发连接
查看>>
Windows下Mysql5.6启用监控执行脚本的日志
查看>>
Apple Developer Registration and DUNS Number Not Accepted
查看>>
Hadoop学习笔记系列文章导航
查看>>
转一贴,今天实在写累了,也看累了--【Python异步非阻塞IO多路复用Select/Poll/Epoll使用】...
查看>>
Codeforces Round #290 (Div. 2) C. Fox And Names dfs
查看>>