检测移动浏览器对 HTML5 支持的代码

发布于 2024-10-27 09:10:35 字数 248 浏览 2 评论 0原文

我想要代码(C# / JavaScript)来检测哪些移动浏览器支持 HTML5。我有检测桌面浏览器的 HTML5(canvas) 兼容性的代码。但此代码不适用于移动浏览器。

if (!!document.createElement('canvas').getContext) {
  this browser supports HTML5(canvas)
} else {
    not supports HTML5...
}

I want the code (C# / JavaScript) to detect which mobile browsers are support HTML5. I have the code to detect the HTML5(canvas) compatibility for desktop browsers. But this code is not working for mobile browsers.

if (!!document.createElement('canvas').getContext) {
  this browser supports HTML5(canvas)
} else {
    not supports HTML5...
}

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

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

发布评论

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

评论(2

月亮坠入山谷 2024-11-03 09:10:35

您还可以使用著名的 Modernizr

You could also use the famous Modernizr.

妳是的陽光 2024-11-03 09:10:35

使用此库 http://51 Degrees.mobi/ 它将返回您基于客户端的浏览器功能列表,并且基于更新的数据库。我们在工作中使用,非常棒

Use this library http://51degrees.mobi/ it will return you a list of browser capabilities based upon the client and is based from an updated database. We use at work and it's awesome

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