<%
Dim conn,rs
Dim connstr
Dim sqlCmd
'建立資料庫連接對象並開啟
set conn=server.createobject("adodb.connection")
connstr="Provider=Microsoft.jet.oledb.4.0;data source=" & server.mappath("data.mdb")
conn.open connstr
'用於從資料庫中擷取資料的sql語句
sqlCmd="select id,name from category where level=0"
'建立資料集對象
set rs=conn.execute(sqlCmd)
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>二級菜單樣本</title>
</head>
<body>
<form name="form1">
<select name="select1" onchange="getLevel2()">
<option value="0">請選擇一級分類:</option>
<%
'遍曆記錄集產生下拉式功能表選項
while not rs.eof
Response.write("<option value='" & rs("id") & "'>")
Response.write(rs("name"))
Response.write("</option>")
rs.movenext
wend
'關閉資料庫連接及記錄集,釋放資源
rs.close
conn.close
set rs=nothing
set conn=nothing
%>
</select>
<select name="select2">
<option value="0">請選擇二級分類:</option>
</select>
</form>
</body>
</html>
<script language="JavaScript" type="text/javascript">
<!--
//cache用於儲存已經擷取的資料
var cache=[];
function getLevel2(){
if(document.forms.form1.select1.selectedIndex==0){
//當一級菜單未選中時,二級菜單僅保留提示項
document.forms.form1.select2.length=1;
return;
}
//如果當前二級分類沒有被緩衝,則從伺服器端擷取
if(!cache[document.forms.form1.select1.selectedIndex]){
//建立跨瀏覽器的XMLHttpRequest對象
var xmlhttp;
try{
xmlhttp= new ActiveXObject('Msxml2.XMLHTTP');
}catch(e){
try{
xmlhttp= new ActiveXObject('Microsoft.XMLHTTP');
}catch(e){
try{
xmlhttp= new XMLHttpRequest();
}catch(e){}
}
}
//建立請求,並使用escape對userName編碼,以避免亂碼
xmlhttp.open("get","ajax.asp?id="+document.forms.form1.select1.value);
xmlhttp.onreadystatechange=function(){
if(xmlhttp.readyState==4){
if(xmlhttp.status==200){
cache[document.forms.form1.select1.selectedIndex]=eval("("+unescape(xmlhttp.responseText)+")");
//擷取成功後重新調用getLevel2,將資料填充到下拉框,如果直接在這裡寫會造成代碼重複
getLevel2();
}else{
alert("網路失敗。");
}
}
}
xmlhttp.send(null);
//必須在這裡返回,等待回調
return;
}
//此時已經確保緩衝不為空白
document.forms.form1.select2.length=1;
var _arr=cache[document.forms.form1.select1.selectedIndex];
for(var i=0;i<_arr.length-1;i+=2){
with(document.forms.form1.select2){
options[options.length]=new Option(_arr[i],_arr[i+1]);
}
}
}
//-->
</script>