下面这段代码,可以实现800*600,1024*768两套分辨率方案。
<html> <head> <title>Untitled Document</title> <script language="javascript"> function go(){ var myWidth=screen.width if (myWidth>800){ window.location.replace("1024.htm") } else{ window.location.replace("800.htm") } } </script> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> </head>
<body onLoad="go()" topmargin="0" leftmargin="0"> </body> </html>
本文由来源 21aspnet,由 javajgs_com 整理编辑,其版权均为 21aspnet 所有,文章内容系作者个人观点,不代表 Java架构师必看 对观点赞同或支持。如需转载,请注明文章来源。