1
<html>
2
<script language=javascript>
3
function FormMenu(targ,selObj,restore)
{
4
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
5
if(restore) selObj.selectedIndex=0;
6
}
7
</script>
8
<body>
9
<form name=form1>
10
<select onchage="FormMenu('parent',this,0)" name=menu1>
11
<option value=http://www.sohu.com selected>sohu</option>
12
<option value=http://www.sina.com.cn>sina</option>
13
</select>
14
</form>
15
</body>
16
</html>

2



3



4

5

6

7

8

9

10

11

12

13

14

15

16
