※ 猜不到您要連結的內容 ※
|
<script> var count=0 function dothis(){ setTimeout("document.wheel.wheel2.selectedIndex =1000",100) setTimeout("document.wheel.wheel2.selectedIndex =count",200) setTimeout("document.wheel.wheel2.selectedIndex =1000",300) setTimeout("document.wheel.wheel2.selectedIndex =count",400) setTimeout("document.wheel.wheel2.selectedIndex =1000",500) setTimeout("document.wheel.wheel2.selectedIndex =count",600) setTimeout("window.location=document.wheel.wheel2.options[document.wheel.wheel2.selectedIndex].value",800) } function animate(){ var countfinal=Math.round(Math.random()*(document.wheel.wheel2.length-1)) document.wheel.wheel2.selectedIndex =count if (count==countfinal){ dothis() return } if (count<document.wheel.wheel2.length) count++ else count=0 setTimeout("animate()",50) } <form method="POST" name="wheel"> <div align="center"> <center> <p><select name="wheel2" size="4"> <option value="applets.htm">Java applets 教學</option> <option value="script.htm">Java script 教學</option> <option value="asp.htm">ASP 軟體下載</option> <option value="cgi.htm">CGI 軟體下載</option> </select></p> </center> </div> <div align="center"> <center> <p><input type="button" value="請選擇您要連結的內容" name="B1" onClick="animate()"></p> </center> </div> |