index.htm
請選擇請選擇
response.write("請選擇|-1,")
if action = "province" then
sql = "select * from class where parentid =0"
ors.open sql,oconn,1,3
if not (ors.eof or ors.bof) then
while not ors.eof
response.write ors("classname")&"|"&ors("id")&","
ors.movenext
wend
end if
ors.close
elseif action = "city" then
sql = "select * from class where parentid =" &request.querystring("id")
ors.open sql,oconn,1,3
if not (ors.eof or ors.bof) then
while not ors.eof
response.write ors("classname")&"|"&ors("id")&","
ors.movenext
wend
end if
ors.close
else
response.write("程式出錯")
end if
oconn.close
%>
Vue 兩級聯動
vue的兩級聯動,其實跟陣列類似,直接上 吧。class titlestyle 選單一 class typediv class typestyle v bind class v for item,index in typelist key index click firstlevelchange i...
微信小程式兩級聯動
模擬的資料層級結構 data中的資料 data 頁面 班級 兩個主要方法 bindmultipickerchange function e bindmultipickercolumnchange function e 這裡主要設定初始化模擬資料,根據實際情況可以用介面返回的資料 最主要用的是mult...
關於layui框架下拉框省市兩級聯動
廢話不多說,直接進入正題 第一步,引入相關檔案,具體請移步layui官網文件 第二步,在使用下拉框之前,需要在js宣告form模板 layui.use form function var form layui.form 第三步,建立兩個下拉框 省市 城市 注意 provincechange為事件名。...