window.onload=initForm; //防止頁面緩存,無法觸發onload window.onunload=function(){} function initForm(){ document.getElementById("newLocation").selectIndex=0; document.getElementById("newLocation").onchange=jumpPage; } function jumpPage(){ var newLoc=document.getElementById("newLocation"); var newPage=newLoc.options[newLoc.selectedIndex].value; if (newPage!=""){ window.location=newPage; } }