JavaScript中的浏览器检测?

如何使用JavaScript确定确切的浏览器和版本?

回答:

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').replace('Edg ', 'Edge ');

}

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(' ');

})();

顾名思义,这将告诉您浏览器提供的名称和版本号。

当您在多个浏览器上测试新代码时,它对于对测试结果和错误结果进行排序非常方便。

以上是 JavaScript中的浏览器检测? 的全部内容, 来源链接: utcz.com/qa/401060.html

回到顶部