顺便说明: legend1970的跳转方法中下面第一个参数是800*600分辨率时跳转的页面,第2个是1024*768时的跳转页面,你将这两个参数改为你的想要跳转的页面就ok了
var url800x600="default8X6.asp";
var url1024x768="default.asp";
<script language="JavaScript">
<!-- Begin
function redirectPage() {
var url800x600="default8X6.asp";
var url1024x768="default.asp";
if ((screen.width==800) && (screen.height==600))
{window.location.href= url800x600}
else
if ((screen.width==1024) && (screen.height==768))
{window.location.href=url1024x768}
else
{window.location.href=url1024x768}
}
//-->
</script>