var $ = jQuery.noConflict();
$(document).ready(function() {
if ((screen.width>=1024)) {
$('link[title=theme800]')[0].disabled=true;
$('link[title=theme]')[0].disabled=false;
}
if ((screen.width<1024)) {
$('link[title=theme]')[0].disabled=true;
$('link[title=theme800]')[0].disabled=false;
}
});
我的html页面:
<link title = "theme" rel="stylesheet" type="text/css" media="all" href="theme.css" />
<link title = "theme800" rel="stylesheet" type="text/css" media="all" href="theme800.css" />
好的,我正在以不同的屏幕尺寸测试我的网站。出于某种原因,当我处于“<1024”模式时,第二个样式表(theme800)没有在 IE 和 Chrome 中加载,它适用于 Firefox。我确实给了一切标题和一切。同样,它在 Firefox 中有效,但在其他浏览器中无效。如何让它在其他浏览器中工作?帮助!
谢谢。