在 JavaScript 中检测 Lion (OS X 10.7)?

发布于 2024-12-09 02:24:19 字数 57 浏览 0 评论 0原文

有没有办法用 Javascript 检测操作系统是否是 OS X Lion?

干杯!

Is there a way to detect if the operating system is OS X Lion or not in Javascript?

Cheers!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

绝不放开 2024-12-16 02:24:19

Lion 中 Safari(以及 Firefox)的用户代理类似于

Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3

其中有“Mac OS X 10_7_1” - 这表示 Lion(= Mac OS 10.7)。

请参阅此处:http://www.whatsmyuseragent.com/

您可以使用“navigator.txt”读取用户代理字符串。用户代理”

The user agent of Safari (and also Firefox) in Lion is something like

Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3

There is "Mac OS X 10_7_1" in it - this indicates Lion (= Mac OS 10.7).

See here: http://www.whatsmyuseragent.com/

You can read the user agent string using "navigator.userAgent"

海风掠过北极光 2024-12-16 02:24:19

http://www.quirksmode.org/js/detect.html
BrowserDetect.OS 但我不知道它的兼容性。 <- 此链接确实使用了用户代理。

http://www.quirksmode.org/js/detect.html
BrowserDetect.OS I don't know its compatibility though. <- This link does use the useragent.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文