当前位置: 首页 > 图文教程 > 网络编程 > Javascript > javascript 三级下拉选择菜单Levels对象

Javascript
javascript 响应键盘特定按键(只响应数字键)
javascript indexOf方法、lastIndexOf 方法和substring 方法
javascript parseInt 函数分析(转)
javascript Split方法,indexOf方法、lastIndexOf 方法和substring 方法
JavaScript 面向对象入门精简篇
JS中==与===操作符的比较
JavaScript indexOf忽略大小写
dwr spring的集成实现代码
DWR Ext 加载数据
JavaScript 计算当天是本年本月的第几周
Js 获取当前日期时间及其它操作实现代码
javascript multibox 全选
JS array 数组详解
javascript 对象定义方法 简单易学
javascript 补零 函数集合
div scroll始终在最底部的实现代码
javascript eval()用法
javascript 打印页面代码
JAVASCRIPT THIS详解 面向对象
javascript 页面跳转方法集合

Javascript 中的 javascript 三级下拉选择菜单Levels对象


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-12   浏览: 243 ::
收藏到网摘: n/a

javascript 三级下拉选择菜单Levels对象,非常的不错,大家可以参考下。 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>

演示代码:
点击运行可以看到效果:
[Ctrl+A 全选 提示:你可先修改部分代码,再按运行]