代码呢?
function FP_jumpMenu(el,frm,sel) {
//取得下拉列表里值
var href=el.options[el.selectedIndex].value;
if(sel)
el.selectedIndex=0;
if('_new'==frm)
//打开href链接
open(href);
else
//把frm的链接设为href,eval函数可以吧字符串当做javascript处理
eval(frm+".location='"+href+"'");
}