根據瀏覽器和解析度不同自動調用CSS樣式表 (jscript實現)

來源:互聯網
上載者:User

根據瀏覽器和解析度不同自動調用CSS樣式表, 這是用jscript實現的,以下是代碼:

 代碼如下 複製代碼

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>根據判斷瀏覽器類型螢幕解析度自動調用不同CSS的代碼</title>
<link href="" _fcksavedurl="""" rel="stylesheet" type="text/css" />
<script language="jscript">...
if (window.navigator.userAgent.indexOf("MSIE")>=1)
...{
var IE1024="style1.css";
var IE800="style2.css";
var IE1152="css1.css";
var IEother="css1.css";
ScreenWidth(IE1024,IE800,IE1152,IEother)
}else...{
if (window.navigator.userAgent.indexOf("Firefox")>=1)
...{
//如果瀏覽器為Firefox
var Firefox1024="style1";
var Firefox800="style2.css";
var Firefox1152="css1.css";
var Firefoxother="css1.css";
ScreenWidth(Firefox1024,Firefox800,Firefox1152,Firefoxother)
}else...{
//如果瀏覽器為其他
var Other1024="css1.css";
var Other800="css1.css";
var Other1152="css1.css";
var Otherother="css1.css";
ScreenWidth(Other1024,Other800,Other1152,Otherother)
}
}
function ScreenWidth(CSS1,CSS2,CSS3,CSS4)...{
if ((screen.width == 1024) && (screen.height == 768))...{
setActiveStyleSheet(CSS1);
}else...{
if ((screen.width == 800) && (screen.height == 600))...{
setActiveStyleSheet(CSS2);
}else...{
if ((screen.width == 1152) && (screen.height == 864))...{
setActiveStyleSheet(CSS3);
}else...{
setActiveStyleSheet(CSS4);
}}}
}
function setActiveStyleSheet(title)...{document.getElementsByTagName("link")[0].href=""+title;}
</script>
</head>
<body>
</body>
</html>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.