※ 連結和說明 ※
|
<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> |