javascript 三級(jí)下拉選擇菜單Levels對(duì)象
更新時(shí)間:2009年07月21日 22:59:30 作者:
javascript 三級(jí)下拉選擇菜單Levels對(duì)象,非常的不錯(cuò),大家可以參考下。
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,//用存儲(chǔ)各級(jí)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));//給一級(jí)菜單添加一個(gè)“select”標(biāo)志
for (var i = 0; i < l1.length; i++) {
var item = new Option(l1[i], i);
this.fL.options.add(item);
}
this.doLev2(); //調(diào)用doLev2函數(shù),處理二級(jí)菜單
this.doLev3(); //調(diào)用doLev3函數(shù),處理三級(jí)菜單
},
removeSTL: function(){ //用于刪除第二、三級(jí)的菜單項(xiàng)
this.sL.options.length = 0;
this.tL.options.length = 0;
},
removeTL: function(){ //用于刪除第三級(jí)的菜單項(xiàng)
this.tL.options.length = 0;
},
doLev2: function(){ //處理二級(jí)菜單
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)); //給二級(jí)菜單添加一個(gè)“select”標(biāo)志
//獲取第二級(jí)所需的數(shù)組
var items = that.l2[that.fL.selectedIndex - 1];
for (var i = 0; i < items.length; i++) { //添加第二級(jí)的新select項(xiàng)
var item = new Option(items[i], i);
that.sL.options.add(item);
}
}
}
},
doLev3: function(){ //處理三級(jí)菜單
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)); //給三級(jí)菜單添加一個(gè)“select”標(biāo)志
//獲取第三級(jí)所需的數(shù)組
var items = that.l3[that.fL.selectedIndex - 1][that.sL.selectedIndex - 1];
for (var i = 0; i < items.length; i++) { //添加第三級(jí)的新select項(xiàng)
var item = new Option(items[i], i);
that.tL.options.add(item);
}
}
}
}
}
onload = function(){
Levels.init("first", "second", "third", level1,level2,level3); //調(diào)用Levels的init方法
}
</script>
HTML:
<form>
<select id="first">
</select>
<select id="second">
</select>
<select id="third">
</select>
</form>
演示代碼:
[Ctrl+A 全選 注:引入外部Js需再刷新一下頁(yè)面才能執(zhí)行]
復(fù)制代碼 代碼如下:
<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,//用存儲(chǔ)各級(jí)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));//給一級(jí)菜單添加一個(gè)“select”標(biāo)志
for (var i = 0; i < l1.length; i++) {
var item = new Option(l1[i], i);
this.fL.options.add(item);
}
this.doLev2(); //調(diào)用doLev2函數(shù),處理二級(jí)菜單
this.doLev3(); //調(diào)用doLev3函數(shù),處理三級(jí)菜單
},
removeSTL: function(){ //用于刪除第二、三級(jí)的菜單項(xiàng)
this.sL.options.length = 0;
this.tL.options.length = 0;
},
removeTL: function(){ //用于刪除第三級(jí)的菜單項(xiàng)
this.tL.options.length = 0;
},
doLev2: function(){ //處理二級(jí)菜單
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)); //給二級(jí)菜單添加一個(gè)“select”標(biāo)志
//獲取第二級(jí)所需的數(shù)組
var items = that.l2[that.fL.selectedIndex - 1];
for (var i = 0; i < items.length; i++) { //添加第二級(jí)的新select項(xiàng)
var item = new Option(items[i], i);
that.sL.options.add(item);
}
}
}
},
doLev3: function(){ //處理三級(jí)菜單
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)); //給三級(jí)菜單添加一個(gè)“select”標(biāo)志
//獲取第三級(jí)所需的數(shù)組
var items = that.l3[that.fL.selectedIndex - 1][that.sL.selectedIndex - 1];
for (var i = 0; i < items.length; i++) { //添加第三級(jí)的新select項(xiàng)
var item = new Option(items[i], i);
that.tL.options.add(item);
}
}
}
}
}
onload = function(){
Levels.init("first", "second", "third", level1,level2,level3); //調(diào)用Levels的init方法
}
</script>
HTML:
復(fù)制代碼 代碼如下:
<form>
<select id="first">
</select>
<select id="second">
</select>
<select id="third">
</select>
</form>
演示代碼:
[Ctrl+A 全選 注:引入外部Js需再刷新一下頁(yè)面才能執(zhí)行]
您可能感興趣的文章:
- vuejs實(shí)現(xiàn)下拉框菜單選擇
- JS實(shí)現(xiàn)點(diǎn)擊下拉菜單把選擇的內(nèi)容同步到input輸入框內(nèi)的實(shí)例
- javascript實(shí)現(xiàn)日期三級(jí)聯(lián)動(dòng)下拉框選擇菜單
- 使用Javascript實(shí)現(xiàn)選擇下拉菜單互移并排序
- 基于javascript實(shí)現(xiàn)全國(guó)省市二級(jí)聯(lián)動(dòng)下拉選擇菜單
- js模擬淘寶網(wǎng)的多級(jí)選擇菜單實(shí)現(xiàn)方法
- js實(shí)現(xiàn)的全國(guó)省市二級(jí)聯(lián)動(dòng)下拉選擇菜單完整實(shí)例
- js選擇并轉(zhuǎn)移導(dǎo)航菜單示例代碼
- 純JSP+DWR實(shí)現(xiàn)三級(jí)聯(lián)動(dòng)下拉選擇菜單實(shí)現(xiàn)技巧
- js實(shí)現(xiàn)圓形菜單選擇器
相關(guān)文章
js iframe網(wǎng)站后臺(tái)左右收縮型頁(yè)面腳本
其實(shí)和我的后臺(tái)一樣網(wǎng)站后臺(tái)免費(fèi)提供 這里的樣式的重點(diǎn)是指當(dāng)鼠標(biāo)移到三角按鈕時(shí)變成手掌2008-07-07javascript 三級(jí)下拉選擇菜單Levels對(duì)象
javascript 三級(jí)下拉選擇菜單Levels對(duì)象,非常的不錯(cuò),大家可以參考下。2009-07-07javascript實(shí)現(xiàn)操作cookie實(shí)現(xiàn)的可記憶菜單
javascript實(shí)現(xiàn)操作cookie實(shí)現(xiàn)的可記憶菜單...2007-07-07用javascript實(shí)現(xiàn)的不錯(cuò)的一款網(wǎng)頁(yè)選項(xiàng)卡
用javascript實(shí)現(xiàn)的不錯(cuò)的一款網(wǎng)頁(yè)選項(xiàng)卡...2007-11-11騰訊QQ網(wǎng)頁(yè)在線客服,隱藏在網(wǎng)頁(yè)一側(cè)的隱現(xiàn)效果二
騰訊QQ網(wǎng)頁(yè)在線客服,隱藏在網(wǎng)頁(yè)一側(cè)的隱現(xiàn)效果二...2007-03-03