传统
这里要做的是,省略go there按钮,选择菜单项后,直接跳转。
html代码
复制代码 代码如下:
转移菜单
select a topic
topic1
topic2
topic3
topic4
topic5
javascript脚本
复制代码 代码如下:
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;
}
}