可以通过使用以下方法在 JavaScript 中获取 user agent (ua):使用 navigator.useragent使用 navigator.useragentdata使用第三方库(例如 ua-parser、detect.JS 或 bowser)
如何使用 JavaScript 获取 User Agent (UA)
User Agent (UA) 是一个服务器端 http 标头,它包含有关客户端(浏览器、操作系统等)的信息。在 JavaScript 中,可以通过以下方法获取 UA:
1. 使用 navigator.userAgent
这是获取 UA 的最直接方法。navigator.userAgent 是一个只读属性,它返回一个字符串,包含客户端的 UA。
const ua = navigator.userAgent;
2. 使用 navigator.userAgentData
navigator.userAgentData 是 navigator.userAgent 的一个更新、更全面的版本。它包含一个 brands 属性,该属性提供有关客户端浏览器和操作系统的更具体信息。
navigator.userAgentData.getHighEntropyValues(['platform', 'browser']).then(ud => { const platform = ud.platform; // 例如:"macos" const browser = ud.browser; // 例如:"Chrome" });
3. 使用第三方库
还有许多第三方库可以帮助你获取和解析 UA。其中一些流行的库包括:
- [UA-Parser](https://github.com/faisalman/ua-parser-js)
- [Detect.js](https://github.com/darcyclarke/Detect.js)
- [Bowser](https://github.com/lancedikson/bowser)
这些库通常提供额外的功能,如 UA 解析和设备检测。