编程语言
首页 > 编程语言> > JavaScript中的浏览器检测?

JavaScript中的浏览器检测?

作者:互联网

参见英文答案 > How can you detect the version of a browser?                                    25个
如何使用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,browser-detection
来源: https://codeday.me/bug/20190911/1803094.html