如何使用 JavaScript 检测 Chromium 操作系统?
我使用 Windows 来开发应用程序,并使用 navigator.platform
来检测操作系统类型。
我没有 Chromium 操作系统,所以我不知道上面的脚本将返回什么值。
有人能告诉我它在 Chromium 操作系统上返回什么吗?
I use Windows to develop my app and I use navigator.platform
to detect the OS type.
I don't have a Chromium OS so I don't know what the value will be returned by the above script.
Can someone tell me what it returns on Chromium OS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 userAgent 中,您将获得 Chrome,然后是 CrOS
例如:
var ua = window.navigator.userAgent; // 然后检查 UA 是否类似于: Mozilla/5.0 (X11; CrOS i686 0.12.433) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.77 Safari/534.30
这是我写的一篇关于它的文章过去:http://greenido.wordpress.com/ 2011/06/14/如何检测它是 chromebook/
In the userAgent you will get Chrome and then CrOS
For example:
var ua = window.navigator.userAgent; // Then check if the UA is something like: Mozilla/5.0 (X11; CrOS i686 0.12.433) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.77 Safari/534.30
Here is a post I've wrote about it in the past: http://greenido.wordpress.com/2011/06/14/how-to-detect-it-is-a-chromebook/