现在的位置: 首页 > 综合 > 正文

关于:javascript检测屏幕分辨率

2012年06月02日 ⁄ 综合 ⁄ 共 416字 ⁄ 字号 评论关闭
    <script language="JavaScript">
<!-- Begin
function redirectPage() {
if ((screen.width == 640) && (screen.height == 480))
size = "640 x 480";
else if ((screen.width == 800) && (screen.height == 600))
size = "800 x 600";
else if ((screen.width == 1024) && (screen.height == 768))
size = "1024 x 768";
else size = "the default 640 x 480";
alert("经系统检测,你的屏幕分辨率为 " + size + ",你的显示器适于....");
}
// End -->
</script>
           
……
文章来源:http://wangzhq.blog.com.cn/archives/2006/894776.shtml

抱歉!评论已关闭.