日期:2014-05-16 浏览次数:20423 次
<html>
<head>
<title>This is a test!</title>
</head>
<body>
<form name="frm">
<select name="s1" onChange="redirec(document.frm.s1.options.selectedIndex)">
<option value="id" selected>学号</option>
<option value="name">姓名</option>
<option value="age">年龄</option>
</select>
<select name="s2">
</select>
<input type="submit" value="查询"/>
</form>
<script language="javascript">
//获取一级菜单长度
var select1_len = document.frm.s1.options.length;
var select2 = new Array(select1_len);
//把一级菜单都设为数组
for(i=0; i<select1_len; i++)
{
select2[i] = new Array();
}
//定义基本选项
select2[0][0] = new Option("包含", "contain");
select2[0][1] = new Option("等于", "equal");
select2[1][0] = new Option("包含", "contain");
select2[1][1] = new Option("等于", "equal");
select2[2][0] = new Option(">", ">");
select2[2][1] = new Option("=", "=");
select2[2][2] = new Option("<", "<");
select2[2][3] = new Option("<=", "<=");
select2[2][4] = new Option(">=", ">=");
//联动函数
function redirec(x)
{
var temp = document.frm.s2;
for (i=0;i<select2[x].length;i++)
{
temp.options[i]=new Option(select2[x][i].text,select2[x][i].value);
}
alert("x:"+x+" select2["+x+"].length:"+select2[x].length);
temp.options[0].selected=true;
}
</script>
</body>
</html>