[求助]怎样在下拉框里的内容做联接
各位大哥,怎样给下拉框里的内容做链接!谢谢
跳转
跳转
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
//-->
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<select name="menu1" onchange="MM_jumpMenu('parent',this,0)">
<option value="1.asp">1</option>
<option value="2.asp">2</option>
<option value="3.asp">3</option>
</select>
</form>
</body>
</html>