在javascript中检测操作系统,浏览器和版本号的广泛解决方案是什么?

时间:2015-01-07 23:26:01

标签: javascript

我基本上是在寻找一个涵盖用户代理的大多数浏览器和操作系统的扩展或功能。

1 个答案:

答案 0 :(得分:1)

我会使用众多移动检测库中的一个。

其中一个项目是mobile-detect

显然,它可以为您提供所需的所有信息。从它的自述文件:

var md = new MobileDetect(
    'Mozilla/5.0 (Linux; U; Android 4.0.3; en-in; SonyEricssonMT11i' +
    ' Build/4.1.A.0.562) AppleWebKit/534.30 (KHTML, like Gecko)' +
    ' Version/4.0 Mobile Safari/534.30');

// more typically we would instantiate with 'window.navigator.userAgent'
// as user-agent; this string literal is only for better understanding

console.log( md.mobile() );          // 'Sony'
console.log( md.phone() );           // 'Sony'
console.log( md.tablet() );          // null
console.log( md.userAgent() );       // 'Safari'
console.log( md.os() );              // 'AndroidOS'
console.log( md.is('iPhone') );      // false
console.log( md.is('bot') );         // false
console.log( md.version('Webkit') );         // 534.3
console.log( md.versionStr('Build') );       // '4.1.A.0.562'
console.log( md.match('playstation|xbox') ); // false

另外,请考虑使用modernizr是否更合适。与设备检查相比,特征检测更加强大且面向未来。