如果你的網頁不經常更新,而且對頁面效果極其在意,那好,你就設計兩個頁面,分別對應800×600和1024×768兩種分辨率。把這兩個首頁文件分別命名為index800.htm和index1024.htm 。然後在空白的索引頁index.htm中加入以下代碼到前面:
- <Script language=”javascript”>
- if (window.screen){
- var w=screen.width;
- url_800=”index800.htm”;
- url_1024=”index1024.htm”
- //請根據你的文件命名修改
- if (w<835){
- self.location.replace(url_800);
- }//加入判斷條件,還可以用“&”加入多個判斷條件
- if (w>=835){
- self.location.replace(url_1024);
- }
- }
- </Script>