傳統
這裡要做的是,省略Go There按鈕,選擇選單項目後,直接跳轉。
Html代碼
/W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
轉移選單
Javascript腳本
複製程式碼
複製程式碼
程式碼如下
window.onload=initForm;
//防止頁面緩存,無法觸發onload
window.onunload=function(){}
("newLocation").selectIndex=0;
document.getElementById("newLocation").onchange=jumpPage;
var newLoc=document.getElementById("newLocation ");
var newPage=newLoc.options[newLoc.selectedIndex].value;
newPage;
} }