MenuArr=new Array()
MenuLenArr=new Array()
SubMenuArr=new Array()
MenuIdArr=new Array()
MenuArr[1]="%call top11%>" //洲名|||...
MenuArr[2]="%call top1%>" //洲名###國(guó)名|||...
MenuIdArr[1]="zhou"
MenuIdArr[2]="author"
MenuClass=2 //4級(jí)菜單
splitchar1="|||";
splitchar2="###";
基本的menuArr[1]與menuArr[2]用類輸出
options.add(new Option( "-----請(qǐng)選擇-----",""));
add(new Option("text","value"))用法
js生成的value值為top1中的名字,有些用id,有些用文字,在結(jié)合數(shù)據(jù)庫select的可行性的原則下修改
sub top1
sql="select * from type2"
rs.open sql,conn,1,1
while not rs.eof
a=rs("id2")
b=rs("p_type2")
call top2(a,a)
rs.movenext
wend
rs.close
end sub
sub top11
sql="select * from type2"
rs.open sql,conn,1,1
while not rs.eof
response.write (rs("p_type2")"|||")
rs.movenext
wend
rs.close
end sub
sub top2 (id,b)
sqle="select DISTINCT(author) from product where id2="id
set rsa=server.CreateObject("adodb.recordset")
rsa.open sqle,conn,1,1
if not(rsa.eof) then
while not rsa.eof
response.write (b"###")
response.write rsa("author")"|||"
rsa.movenext
wend
else
response.write (b"###")
response.write "無""|||"
end if
rsa.close
end sub
%>
您可能感興趣的文章:- JS無限極樹形菜單,json格式、數(shù)組格式通用示例
- 使用js+jquery實(shí)現(xiàn)無限極聯(lián)動(dòng)
- js實(shí)現(xiàn)無限級(jí)樹形導(dǎo)航列表效果代碼
- JS實(shí)現(xiàn)無限級(jí)網(wǎng)頁折疊菜單(類似樹形菜單)效果代碼
- json+jQuery實(shí)現(xiàn)的無限級(jí)樹形菜單效果代碼
- javascript實(shí)現(xiàn)無限級(jí)select聯(lián)動(dòng)菜單
- 基于jquery的無限級(jí)聯(lián)下拉框js插件
- JavaScript+CSS無限極分類效果完整實(shí)現(xiàn)方法