JS/jQuery/mootools 检测浏览器是否支持 HTML5
jquery 和 mootools检测浏览器是否支持 HTML5
如何通过JS
(或)
。
How do I detect if a browser supports HTML5 by
JS
(or)
jquery AND mootools.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 modernizr 检测 HTML5 和 CSS 功能。
Use modernizr to detect HTML5 and CSS features.
正如其他人所建议的,最好的选择是使用 Modernizr,因为它是专门为完成这项工作而创建的。
我不知道 jQuery 中是否有任何插件涵盖此功能(jQuery.supports 没有检查太多),但如果您愿意,可以尝试 mooModernizr 女巫扩展 MooTools
Browser.Features
对象另一个完全有效的选项是检查 Modernizrs 源代码,并使用您想要的功能来实现它 探测。
As the other suggested the best option is to use Modernizr, because it was created especially to do this work.
I don't know any plugin in jQuery that covers this functionality (jQuery.supports doesn't check much) but if you want you could try mooModernizr witch extends MooTools
Browser.Features
objectAnother completely valid option is to check Modernizrs source code, and implment that with the features you want to detect.
检测视频标签支持非常简单:
我认为这是一个简单的版本。以下是多次提到的
modernizr
的做法,这可能更安全:To detect the video tag support is quite easy:
That's in my opinion a simplistic version. Here is how the many times mentioned
modernizr
does it, which is a bit more bullet proof probably:看看现代化。它是一个开源的javascript库,专门用于检测html5/css3功能:
http://www.modernizr.com/
Check out modernizr. It is an open source javascript library that specializes in detection of html5 / css3 features:
http://www.modernizr.com/