Skip to content

Instantly share code, notes, and snippets.

@Latisha19
Created January 15, 2022 18:08
Show Gist options
  • Save Latisha19/f04987e404e723187f452c83a2365e23 to your computer and use it in GitHub Desktop.
Save Latisha19/f04987e404e723187f452c83a2365e23 to your computer and use it in GitHub Desktop.
三層下拉式選單
<form>
<p>請選擇區域</p>
<select id="list1"></select>
<br>
<p>縣市</p>
<select id="list2"></select>
<br>
<p>鄉鎮</p>
<select id="list3"></select>
</form>
// 產出第一層
var colleges=['北','中','南'];
var inner="";
for(var i=0;i<colleges.length;i++){
inner+=`<option value=i>${colleges[i]}</option>`;
}
$("#list1").html(inner);//寫入
var noIndex;//第二層的index
//選擇第一層後,產出第二層
var sectors=new Array();
sectors[0]=['台北 ',' 桃園' ,' 新竹' ];
sectors[1]=['台中','彰化',' 苗栗 '];
sectors[2]=['高雄 ','屏東',' 台南 '];
$("#list1").change(function(){
index=this.selectedIndex;//第一層的index
noIndex =index;
console.log('no1',this.selectedIndex);
console.log('第二層的長度',sectors[index].length);//第二層的長度
console.log('第二層選擇的陣列',sectors[index]);//第二層選擇的陣列
var Sinner="";
for(var i=0;i<sectors[index].length;i++){
// Sinner=Sinner+'<option value=i>'+sectors[index][i]+'</option>';
Sinner+=`<option value=i>${sectors[index][i]}</option>`;
}
$("#list2").html(Sinner);
// 第三層
var sectorss=new Array();
sectorss[0]=['台北 ',' 桃園',' 新竹 '];
sectorss[1]=['台中 ',' 彰化',' 苗栗 '];
sectorss[2]=['高雄 ','屏東 ',' 台南 '];
sectorss[0][0]=['中山 ',' 松山' ,' 士林' ];
sectorss[0][1]=['中壢 ',' 內壢' ,' 楊梅' ];
sectorss[0][2]=['竹北 ',' 竹東' ,' 內灣' ];
sectorss[1][0]=['太平 ',' 大甲' ,' 清水' ];
sectorss[1][1]=['員林 ',' 田中' ,' 彰化' ];
sectorss[1][2]=['通宵 ',' 苑里' ,' 三義' ];
sectorss[2][0]=['鳳山 ',' 楠梓' ,' 鼓山' ];
sectorss[2][1]=['枋山 ',' 林邊' ,' 佳東' ];
sectorss[2][2]=['南科 ',' 永康' ,' 保安' ];
console.log(sectorss);
$("#list2").change(function(){
index=this.selectedIndex;
console.log('no2',this.selectedIndex);
var Sinner3="";
console.log('0000',sectorss[noIndex]);
for(var i=0;i<sectorss[noIndex][index].length;i++){
Sinner3=Sinner3+'<option value=i>'+sectorss[noIndex][index][i]+'</option>';
}
$("#list3").html(Sinner3);
});
$("#list2").change();
});
$("#list1").change();
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
body {
background-color: #a3d5d3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment