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

  2. 先將<BODY>先拿掉

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

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

Copyright Power Information All Rights Reserved.

※連結和說明展示區※


<body topmargin="3"
leftmargin="0" background="jpg/01_bkg1.jpg">
<script language="JavaScript">
<!-- Begin
function go_to_station() {
if (document.stationform.stationselect.options[0].selected) {
window.location.href = "applets.htm";} 
else if (document.stationform.stationselect.options[1].selected) {
window.location.href = "script.htm";}
else if (document.stationform.stationselect.options[2].selected) {
window.location.href = "asp.htm";} 
else if (document.stationform.stationselect.options[3].selected) {
window.location.href = "cgi.htm";}
return true; 
}
function textValue() { 
var stationInteger, stationString 
stationInteger=document.stationform.stationselect.selectedIndex 
stationString=document.stationform.stationselect.options[stationInteger].text 
document.stationform.stationtext.value = " 您要選擇 [" + stationString +"] ?選擇後按 [確定]"
}
// End -->
</script>
<form name="stationform">
<p align="center"><select name="stationselect" multiple
size="3" onchange="textValue()">
<option>Java applets 教學</option>
<option>Java script 教學</option>
<option>ASP 軟體下載</option>
<option>CGI 軟體下載</option>
</select> <br>
</p>
<p align="center"><input type="button" name="stationbutton"
value="確定" onclick="go_to_station()"> </p>
<p align="center"><input type="text" size="40" maxlength="30"
name="stationtext"> </p>
</form>