在 JavaScript 中检测 Lion (OS X 10.7)?
有没有办法用 Javascript 检测操作系统是否是 OS X Lion?
干杯!
Is there a way to detect if the operating system is OS X Lion or not in Javascript?
Cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Lion 中 Safari(以及 Firefox)的用户代理类似于
其中有“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
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"
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.