如何使用 JavaScript 检测 Chromium 操作系统?

发布于 2024-12-04 00:55:27 字数 156 浏览 1 评论 0原文

我使用 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 技术交流群。

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

发布评论

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

评论(1

北城半夏 2024-12-11 00:55:27

在 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/

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