作者mdfh (恶魔党)
看板Web_Design
标题Re: [问题] 请问可连结的随机图片该如何制作
时间Thu Oct 7 03:11:12 2004
※ 引述《monlex (行善积德终有好报)》之铭言:
: 多亏mdfh 我已经顺利做出随机图片的效果
: 并且也利用<a>标签包住<script>标签的方式加入了超连结
: 但是这样一来不论出现哪一张图片
: 都只能连结到同一个网址
: 是我做错了吗?
: 我把我的程式波上来 拜托请帮我指正 谢谢
: <a href="http://www.nccu.edu.tw" target="_blank">
: <script language="JavaScript">
: <!--
: tips = new Array();
: tips[0] = "Picture01.jpg";
: tips[1] = "Picture02.jpg";
: tips[2] = "Picture03.jpg";
: index = Math.floor(Math.random() * tips.length);
: document.write("<IMG SRC=" + tips[index] + " border=0></img>");
: // -->
: </script></a>
没有做错 因为超连结只有设定一个 ._.
如果是多个超连结,就要用回刚刚A兄写的程式: (没看清楚你问的...sorry @_@)
<script language="JavaScript">
<!--
tips = new Array(3);
tips[0] = "<a href='
http://www.ntu.edu.tw'><img src='ntu.gif'></img>";
tips[1] = "<a href='
http://www.nccu.edu.tw'><img src='nccu.gif'></img>";
tips[2] = "<a href='
http://www.ncu.edu.tw'><img src='ncu.gif'></img>";
index = Math.floor(Math.random() * tips.length);
document.write(" + tips[index] + ");
// -->
</script>
<img> 那里应该是 <img src='ntu.gif' border='0'></img> 因为萤幕不够宽
如果还有其他的 " 都要变成 '
--
我的个人板: P_MDFH
Hyper Digi'Studio telnet://hds.twbbs.org
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 140.115.200.212
1F:推 monlex:我这次真的成功了!! 61.229.19.62 10/07
2F:→ monlex:真是太感谢mdfh兄了 再拜叩首 Orz 61.229.19.62 10/07