這(zhè)種(zhǒng)方法比較簡單地,西西。大家可以根據自己地要求改。
做3個頁面(miàn),分别命名爲“640480.htm”“800600.htm“1024768.htm”,3個頁面(miàn)分别爲三種(zhǒng)分辨率下浏覽的頁,然後(hòu)index.htm的原代碼如下:
<html>
<head>
<script LANGUAGE="JavaScript">
<!--Begin
function redirectPage(){
var url640x480="640480.htm";
var url800x600="800600.htm";
var url1024x768="1024768.htm";
if((screen.width==640)&&(screen.height==480))
window.lacation.href=url640x480;
else if((screen.width==800)&&(screen.height==600))
window.lacation.href=url800x600;
else if((screen.width==1024)&&(screen.height==768))
window.lacation.href=url1024x768;
else window.lacation.href=url800x600;
}
//End--!>
</script>
</head>
<body OnLoad="redirectPage();">
</body>
</html>
|