想自学教程的朋友,就来教程巴巴。
教程巴巴
当前位置: 主页 > 图文 > 网页制作教程 >

JS判断不同分辨率,调用CSS的方法(2)

发布时间:2011-12-13 07:34 点击:
分享到:
【评论本教程】 【挑错本教程】
------分隔线----------------------------
//如果浏览器为Firefox 
setActiveStyleSheet("default2.css"); 
}else{ 
//如果浏览器为其他 
setActiveStyleSheet("newsky.css"); 
function setActiveStyleSheet(title){ 
document.getElementsByTagName("link")[0].href="style/"+title; 
//--> 
</SCRIPT>

 
解释: 
如果浏览器为IE,则调用default.css 
如果浏览器为Firefox,则调用default2.css 
如果浏览器为其他,则调用newsky.css 
用法: 
放在 
[codes=xml]</head>[/codes] 
前面即可。 
只判断分辨率,不判断浏览器 
代码如下:<script language=javascript> 
<!-- 
if (screen.width == 800) 
document.write('<link rel=stylesheet type="text/css" href="css800.css">') 
else {document.write('<link rel=stylesheet type="text/css" href="css1024.css">')} 
//--> 
</script>
相关文章