作者Nellsus (Narcasse)
看板Web_Design
标题Re: [问题] 可以因为使用者使用解析度不同 跳不同 …
时间Wed Feb 25 14:33:45 2004
※ 引述《cigigi (cigigi)》之铭言:
: dreamwaver里可以设定behavior判断浏览器种类
: 跳到不一样的网址
: 那有可以因为不一样的解析度800*600 or 1024*68
: 跳不一样网页的设定吗 还是有原始码提供?
: 谢谢
<script Language="JavaScript">
if (screen.width == 800)
document.write("<meta http-equiv=Refresh content='0;url=1.htm'>");
else if (screen.width == 1024)
document.write("<meta http-equiv=Refresh content='0;url=2.htm'>");
else
document.write("<meta http-equiv=Refresh content='0;url=3.htm'>");
</script>
先使用JavaScript去判定使用者的萤幕解析度(宽),
再利用<META>标签中refresh的属性来达成跳网页的需求,
这里写的是依使用者若为800*600、1024*768以及其他解析度时,
分别跳至1.htm、2.htm以及3.htm。
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 61.56.234.186
1F:→ LPH66:用document.location="档名"也可以 推 163.32.78.221 02/25