'三级下拉框连动
javascript技巧尽在快乐开发
'
'数据库:
'location
'表1 loaction 所在地表
' 字段
' loactionid
javascript技巧尽在快乐开发
' loactionname 名字
'表2 district 所在的地区表
一起娱乐网01716.com
' 字段
.net开发技术文章
' locationid
' districtid
Powered By Achely's Blog
' districtname
'表3 village 所在的县区表
' 字段
' districtid
zhangyongjun.com开发网
' villageid
Powered By Achely's Blog
' villagename
<%Option Explicit%>
<html>
<head>
<title>List</title>
.net开发技术文章<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
zhangyongjun.com开发网
<%
dim conn
dim rs
dim sql
Powered By Achely's Blog
dim count
dim rs1
dim sql1
dim rs2
dim sql2
dim count2
zhangyongjun.com开发网
set conn=server.createobject("adodb.connection")
conn.open"provider=sqloledb;data source=192.168.0.33;uid=sa;pwd=;database=location;"
sql = "select * from district order by locationid asc"
devjoy.cn技术文档
set rs = conn.execute(sql)
%>
<script language = "JavaScript">
var onecount;
一起娱乐网01716.comonecount=0;
javascript技巧尽在快乐开发subcat = new Array();
<%
count = 0
do while not rs.eof
%>
subcat[<%=count%>] = new Array("<%= trim(rs("districtname"))%>","<%= trim(rs("locationid"))%>","<%= trim(rs("districtid"))%>");
<%
count = count + 1
rs.movenext
loop
rs.close
set rs=nothing
%>
一起娱乐网01716.com
onecount=<%=count%>;
zhangyongjun.com开发网function changelocation(locationid)
快乐开发技术文档
{
.net开发技术文章document.myform.smalllocation.length = 0;
var locationid=locationid;
var i;
document.myform.smalllocation.options[0] = new Option('==所选城市的地区==','');
for (i=0;i < onecount; i++)
{
if (subcat[i][1] == locationid)
快乐开发技术文档
{
一起娱乐网01716.comdocument.myform.smalllocation.options[document.myform.smalllocation.length] = new Option(subcat[i][0], subcat[i][2]);
}
}
.net开发技术文章}
</script>
javascript技巧尽在快乐开发
一起娱乐网01716.com
<%sql2 = "select * from village order by districtid asc"
.net开发技术文章
set rs2 = conn.execute(sql2)
%>
Powered By Achely's Blog
<script language = "JavaScript">
var onecount2;
onecount2=0;
subcat2 = new Array();
zhangyongjun.com开发网
<%
Powered By Achely's Blog
count2 = 0
do while not rs2.eof
%>
subcat2[<%=count2%>] = new Array("<%= trim(rs2("villagename"))%>","<%= trim(rs2("districtid"))%>","<%= trim(rs2("villageid"))%>");
<%
count2 = count2 + 1
.net开发技术文章rs2.movenext
zhangyongjun.com开发网
loop
rs2.close
set rs2=nothing
%>
Powered By Achely's Blog
onecount2=<%=count2%>;
function changelocation2(villageid)
{
document.myform.village.length = 0;
var villageid=villageid;
var j;
document.myform.village.options[0] = new Option('==所选地区的县区==','');
zhangyongjun.com开发网
for (j=0;j < onecount2; j++)
{
if (subcat2[j][1] == villageid)
{
document.myform.village.options[document.myform.village.length] = new Option(subcat2[j][0], subcat2[j][2]);
devjoy.cn技术文档
}
}
}
一起娱乐网01716.com</script>
javascript技巧尽在快乐开发</head>
<body>
<form name="myform" method="post">
题目:<input type="text" name="T2" size="20">
来源:<input type="text" name="T3" size="20">
分类:<select name="biglocation" onChange="changelocation(document.myform.biglocation.options[document.myform.biglocation.selectedIndex].value)" size="1">
<option selected>请选择你所在的省份</option>
<%
一起娱乐网01716.com
zhangyongjun.com开发网sql1 = "select * from location order by locationname asc"
set rs1 = conn.Execute (sql1)
快乐开发技术文档
do while not rs1.eof
.net开发技术文章%>
<option value="<%=trim(rs1("locationid"))%>"><%=trim(rs1("locationname"))%></option>
<%
rs1.movenext
loop
rs1.close
set rs1 = nothing
快乐开发技术文档
conn.Close
一起娱乐网01716.comset conn = nothing
%>
</select><select name="smalllocation" onChange="changelocation2(document.myform.smalllocation.options[document.myform.smalllocation.selectedIndex].value)">
<option selected value="">==所有地区==</option>
.net开发技术文章</select><select name="village" size="1">
<option selected>==所有县区==</option>
javascript技巧尽在快乐开发
</select>
一起娱乐网01716.com
.net开发技术文章
关键词:<input type="text" name="T4" size="20">
Powered By Achely's Blog
内容:<textarea rows="9" name="S1" cols="51"></textarea>
</form>
</body>
zhangyongjun.com开发网
</html>