javascript 检测浏览器版本

//判断IE11浏览器
var isIE =navigator.userAgent.toLowerCase().search(/(msie\s|trident.*rv:)([\w.]+)/)!=-1;
if(isIE){
$("#IEDiv").show();
}

//判断当前浏览器的类型
//IE
if(navigator.userAgent.indexOf("MSIE")>0) {
//判断当前IE浏览器的版本
if(navigator.appVersion.match(/9./i) || navigator.appVersion.match(/8./i) || navigator.appVersion.match(/10./i)){
$("#IEDiv").show();
}else if(navigator.appVersion.match(/7./i)){
$("#IE7Div").show();
}
}

//火狐浏览器
if(navigator.userAgent.indexOf("Firefox")>0){
$("#firefoxDiv").show();
}

//谷歌浏览器
if(navigator.userAgent.indexOf("Safari")>0) {
$("#chromeDiv").show();
}

你可能感兴趣的:(javascript,浏览器,javascript)