通过js来判断浏览器的代码

function getBrowserInfo(){ 
        var ua = navigator.userAgent.toLocaleLowerCase(); 
        var browserType=null; 
        if (ua.match(/msie/) != null || ua.match(/trident/) != null) { 
            browserType = "IE"; 
            browserVersion = ua.match(/msie ([\d.]+)/) != null ? ua.match(/msie ([\d.]+)/)[1] : ua.match(/rv:([\d.]+)/)[1]; 
        } else if (ua.match(/firefox/) != null) { 
            browserType = "firefox"; 
        }else if (ua.match(/ubrowser/) != null) { 
            browserType = "UC"; 
        }else if (ua.match(/opera/) != null) { 
            browserType = "opera"; 
        } else if (ua.match(/bidubrowser/) != null) { 
            browserType = "baidu"; 
        }else if (ua.match(/metasr/) != null) { 
            browserType = "sogou"; 
        }else if (ua.match(/tencenttraveler/) != null || ua.match(/qqbrowse/) != null) { 
            browserType = "QQ"; 
        }else if (ua.match(/maxthon/) != null) { 
            browserType = "QQ"; 
        }else if (ua.match(/chrome/) != null) { 
            var is360 = _mime("type", "application/vnd.chromium.remoting-viewer"); 
            function _mime(option, value) { 
                var mimeTypes = navigator.mimeTypes; 
                for (var mt in mimeTypes) { 
                    if (mimeTypes[mt][option] == value) { 
                        return true; 
                    } 
                } 
                return false; 
            } 
            if(is360){ 
                browserType = '360'; 
            }else{ 
                $('html').css("zoom",".80"); 
            } 
        }else if (ua.match(/safari/) != null) { 
            browserType = "Safari"; 
        } 
} 

  [ 视频安全 ] 相关原创文章

[ 视频直播 ] 相关原创文章

[ 视频存储与应用 ] 相关原创文章

[ 视频播放器 ] 相关文章

[ WebRTC ] 相关文章

 [ 谷歌浏览器 ] 相关文章

[ 微信公众号运营 ] 相关文章

上一篇:[POI2011]PRO-Programming Contest


下一篇:正则表达式练习之Regex Golf