使用modernizr可以进行哪些检查来检测firefox功能?
问问题
14397 次
2 回答
19
Even if browser detection is not recommended for features it could be use to present other type of information.
Modernizr.addTest('firefox', function () {
return !!navigator.userAgent.match(/firefox/i);
});
This adds a class .firefox to document.documentElement (html tag)
于 2012-07-03T21:05:25.510 回答
6
不幸的是,对于视频和音频之类的东西,浏览器检测仍然是必要的,因为所有浏览器都支持不同的格式。我想你会在这里找到答案,纳豆:
于 2012-07-03T20:48:19.043 回答