我既想获得value的值。也想获得<option></option>之间的值,请问该怎么获得?
如:
<select name="abc">
<option value="值1">值2</option>
<option value="值3">值4</option>
</select>
二级动态菜单:
<%
rs.open "select * from category order by categoryorder",conn,1,1
if rs.eof and rs.bof then
response.write "请先添加产品大类。"
response.end
else
%>
<select name="categoryid" size="1" id="categoryid" onChange="changelocation(document.myform.categoryid.options[document.myform.categoryid.selectedIndex].value)">
<option selected value="<%=rs("categoryid")%>"><%=trim(rs("category"))%></option>
<%
dim selclass
selclass=rs("categoryid")
rs.movenext
do while not rs.eof
%>
<option value="<%=rs("categoryid")%>"><%=trim(rs("category"))%></option>
<%
rs.movenext
loop
end if
rs.close
%>
</select>
小类:
<select name="sortsid">
<%rs.open "select * from sorts where categoryid="&selclass ,conn,1,1
if not(rs.eof and rs.bof) then
%>
<option selected value="<%=rs("sortsid")%>"><%=rs("sorts")%></option>
<%
rs.movenext
do while not rs.eof
%>
<option value="<%=rs("sortsid")%>"><%=rs("sorts")%></option>
<%
rs.movenext
loop
end if
rs.close
%>
</select>
实现的效果是:在第一个下拉菜单中选择大类后,第二个下拉菜单会自动切换到相应的小类,联动菜单做好了,没什么问题,但是把数据存入数据库时出现了问题:无法得到第一个下拉菜单中的option之间(<%=rs("category")%>)的值。
我想过用数组来实现<option selected value="<%=rs("categoryid")%>,<%=rs("category")%>"><%=trim(rs("category"))%></option>,可是这样的话当选择大类的时候又不能显示相应的小类?大家帮忙想个办法!!!