新微赢技术网

标题: [求助]为什么我的二级联动菜单第二个select框没有东西呢?? [打印本页]

作者: 让爱留在心底    时间: 2010-1-14 06:01
标题: [求助]为什么我的二级联动菜单第二个select框没有东西呢??
为什么我的二级联动菜单第二个select框没有东西呢??
<!--#include file="Conn.asp"-->
<%sql = "select * from bmx"
set rs=server.createobject("ADODB.Recordset")
rs.open sql,conn,1,1%>
<script language = "JavaScript">
var onecount1;
onecount1=0;
subcat1 = new Array();
<%count = 0
do while not rs.eof%>
subcat1[<%=count%>] = new Array("<%= trim(rs("bm_name"))%>","<%= trim(rs("bmd_id"))%>","<%= trim(rs("id_no"))%>");
<%count = count + 1
rs.movenext
loop
rs.close
set rs=nothing%>
onecount1=<%=count%>;
function changelocation1(addone)
{
document.addform.addtwo_id.length = 0;
var addone_id=addone_id;
var i;
document.addform.addtwo_id.options[0] = new Option('请选择市','');
for (i=0;i < onecount1; i++)
{
if (subcat1[i][1] == addone)
{
document.addform.addtwo_id.options[document.addform.addtwo_id.length] = new Option(subcat1[i][0], subcat1[i][2]);
}
}

}
</script>
<select name="addone_id" onChange="changelocation1(document.addform.addone_id.options[document.addform.addone_id.selectedIndex].value)">
<option value="" selected>请选择</option>
<%
sql="select * from bmd"
set rs=server.createobject("ADODB.Recordset")
rs.open sql,conn,1,1
while not rs.eof%>
<option value="<%=rs("id_no")%>"><%=rs("bm_name")%></option>
<%rs.movenext
wend
rs.Close()
%>
</select>
<select name="addtwo_id">
<option selected value="">请继续选择</option>
</select>
帮忙看看好么.....我都快哭了.................




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2