※ 選擇式看版 ※
|
<form name=menuform> <p align="center"> <select size=1 name="msg"> <option>歡迎光臨動力資訊網 <option>本站提供您完整的網頁教學 <option>Java applets 教學 / Java script 教學 <option>ASP 軟體下載 / CGI 軟體下載 </select></form> <center> <script language="javascript"> <!-- Begin function rotate() { menu = document.menuform.msg; chosen = menu.selectedIndex; menu.selectedIndex= (chosen == (menu.length-1)) ? 0 : chosen + 1; setTimeout("rotate()",5000); } rotate(); // End --> </script> |