javascript 三級下拉選擇菜單Levels對象

來源:互聯網
上載者:User

JavaScript: 複製代碼 代碼如下:<script type="text/javascript">
var level1 = ["Beijing", "GuangZhou", "ShangHai"];
var level2 = [["ZhaoYang", "TianTan", "GuGong"], ["Tianhe", "Panyu"], ["PuDong", "PuXi"]];
var level3 = [[["TianShan", "HuangShan"], ["TianTan1", "TianTan2"], ["GuGong1", "GuGong2", "GuGong3", "GuGong4"]], [["TianHe1", "TianHe2"], ["PanYu1", "PanYu2"]], [["PuDong1", "PuDong2"], ["PuXi1", "PuXi2"]]];
var Levels = {
fL: null,//用儲存各級select的DOM引用
sL: null,
tL: null,
l1: null,
l2: null,
l3: null,
$: function(id){
return (typeof id == "object") ? id : document.getElementById(id);
},
init: function(fID, sID, tID, l1, l2, l3){
this.fL = this.$(fID);
this.sL = this.$(sID);
this.tL = this.$(tID);
this.l1 = l1;
this.l2 = l2;
this.l3 = l3;
this.fL.options.add(new Option("Select",-1));//給一級菜單添加一個“select”標誌
for (var i = 0; i < l1.length; i++) {
var item = new Option(l1[i], i);
this.fL.options.add(item);
}
this.doLev2(); //調用doLev2函數,處理二級菜單
this.doLev3(); //調用doLev3函數,處理三級菜單
},
removeSTL: function(){ //用於刪除第二、三級的功能表項目
this.sL.options.length = 0;
this.tL.options.length = 0;
},
removeTL: function(){ //用於刪除第三級的功能表項目
this.tL.options.length = 0;
},
doLev2: function(){ //處理二級菜單
var that = this;
this.fL.onchange = function(){
that.removeSTL(); //刪除舊second的select
if (that.fL.selectedIndex == 0) {
that.removeSTL(); // //刪除舊second的select
}
else {
that.sL.options.add(new Option("Select", -1)); //給二級菜單添加一個“select”標誌
//擷取第二級所需的數組
var items = that.l2[that.fL.selectedIndex - 1];
for (var i = 0; i < items.length; i++) { //添加第二級的新select項
var item = new Option(items[i], i);
that.sL.options.add(item);
}
}
}
},
doLev3: function(){ //處理三級菜單
var that = this;
this.sL.onchange = function(){
that.removeTL(); //刪除舊third的select
if (that.sL.selectedIndex == 0) {
that.removeTL(); //刪除舊third的select
}
else {
that.tL.options.add(new Option("Select", -1)); //給三級菜單添加一個“select”標誌
//擷取第三級所需的數組
var items = that.l3[that.fL.selectedIndex - 1][that.sL.selectedIndex - 1];
for (var i = 0; i < items.length; i++) { //添加第三級的新select項
var item = new Option(items[i], i);
that.tL.options.add(item);
}
}
}
}
}
onload = function(){
Levels.init("first", "second", "third", level1,level2,level3); //調用Levels的init方法
}
</script>

HTML: 複製代碼 代碼如下:<form>
<select id="first">
</select>
<select id="second">
</select>
<select id="third">
</select>
</form>

示範代碼:<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br /><p>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.