我正在尝试加载特定的 CSS 样式表,具体取决于该浏览器是否不支持某些 CSS3 功能。
我使用的JS代码是这样的:
// Modernizr feature tests
Modernizr.load({
test: Modernizr.borderradius,
nope: '/assets/css/border-radius.css'
});
根据开发人员工具,在 IE8 中,这给出了:
<link href="undefined" rel="stylesheet" type="text/css" />
有任何想法吗?