選單視窗
將下列程式碼複製至<head>程式碼</head>區內。
<script language="javascript"> <!-- function gothere(){ var thebox=document.mycombowopt if (thebox.windowoption.checked){ if (!window.newwindow) newwindow=window.open("") newwindow.location= thebox.example.options[thebox.example.selectedIndex].value } else location= thebox.example.options[thebox.example.selectedIndex].value } //--> </script> <form name="mycombowopt"> <p align="center"><select name="example" size="1"> <option value="#">請選擇</option> <option value="http://www.newspace.com.tw/">新空間資訊網</option> <option value="http://www.newspace.com.tw/java/index.asp">Java Script 程式庫</option> <option value="http://www.newspace.com.tw/member/acc/loginc.asp">免費計數器</option> <option value="http://www.newspace.com.tw/member/acc/loging.asp">免費留言板</option> <option value="http://www.newspace.com.tw/member/acc/loginw.asp">免費討論區</option> <option value="http://www.newspace.com.tw/freelink/link.asp">免費登錄板</option> </select> <input type="button" value="Go!" onClick="gothere()"><br> <input type="checkbox" name="windowoption" value="ON">是否開啟子視窗 </form> |