4

使用modernizr可以进行哪些检查来检测firefox功能?

4

2 回答 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

不幸的是,对于视频和音频之类的东西,浏览器检测仍然是必要的,因为所有浏览器都支持不同的格式。我想你会在这里找到答案,纳豆:

http://diveintohtml5.info/detect.html

于 2012-07-03T20:48:19.043 回答