检测移动浏览器对 HTML5 支持的代码
我想要代码(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以使用著名的 Modernizr。
You could also use the famous Modernizr.
使用此库 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