※ 猜不到您要連結的內容 ※
   加入網頁步驟  
 
  1. 將以下的控制碼先複製起來。(用滑鼠將底下的一堆碼,標記起來,按滑鼠右鍵選擇【複製】就行啦!)

  2. 然後在網頁中的 </HEAD> 之後將剛剛複製的東西貼上就大功告成了  !(按滑鼠右鍵選擇【貼上】就行啦!)

  3. 最後,更改原始碼中紅色字的部份的內容就可以了!(就是紅色字的地方,改成您想要的內容即可!)

Copyright Power Information All Rights Reserved.

※猜不到您要連結的內容展示區※


<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>