本文介绍了你怎么可以检测浏览器的版本?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经为code,将让我发现,如果访问该网站的用户的Firefox 3或4。所有我发现搜索解决方法是code来检测浏览器的类型,但不是版本
I've been searching around for code that would let me detect if the user visiting the website has Firefox 3 or 4. All I have found is code to detect the type of browser but not the version.
我如何检测这样的浏览器的版本?
How can I detect the version of a browser like this?
推荐答案
您可以看到浏览器的是,并利用这些信息进行记录或测试多个浏览器。
You can see what the browser says, and use that information for logging or testing multiple browsers.
navigator.sayswho= (function(){
var ua= navigator.userAgent, tem,
M= ua.match(/(opera|chrome|safari|firefox|msie|trident(?=\/))\/?\s*(\d+)/i) || [];
if(/trident/i.test(M[1])){
tem= /\brv[ :]+(\d+)/g.exec(ua) || [];
return 'IE '+(tem[1] || '');
}
if(M[1]=== 'Chrome'){
tem= ua.match(/\b(OPR|Edge)\/(\d+)/);
if(tem!= null) return tem.slice(1).join(' ').replace('OPR', 'Opera');
}
M= M[2]? [M[1], M[2]]: [navigator.appName, navigator.appVersion, '-?'];
if((tem= ua.match(/version\/(\d+)/i))!= null) M.splice(1, 1, tem[1]);
return M.join(' ');
})();
这篇关于你怎么可以检测浏览器的版本?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!