解決瀏覽器解析度問題

jinxi1112發表於2016-06-13
 解決解析度問題在Dreamweaver中沒有此項功能,我們只能手動加入一段Javascript程式碼。首先在change-ie.html或change-nc.html頁面程式碼中的< head>和< /head>中加入以下程式碼:
  
  
   < script language=JavaScript>
   < !--
   function redirectPage(){
   var url800x600=〃index-ie.html〃; //定義兩個頁面,此處假設index-ex.html和1024-ie.html同change-ie.html在同一個目錄下
   var url1024x768=〃1024-ie.html〃;
   if ((screen.width==800) && (screen.height==600)) //在此處新增screen.width、screen.height的值可以檢測更多的解析度
   window.location.href= url800x600;
   else if ((screen.width==1024) && (screen.height==768))
   window.location.href=url1024x768;
   else window.location.href=url800x600;
   }
   // -->
   < /script>
   然後再在< body…>內加入onLoad=〃redirectPage()〃
   最後,同樣地,在< body>和< /body>之間加入以下程式碼來顯示網頁的工作資訊:
   < script language=JavaScript>
   < !--
   var w=screen.width
   var h=screen.height
   document.write(〃系統已檢測到您的解析度為:〃);
   document.write(〃< font size=3 color=red>〃);
   document.write(w+〃×〃+h);
   document.write(〃< /font>〃);
   document.write(〃正在進入頁面轉換,請稍候…〃);
   // -->
   < /script> 

相關文章