JavaScript实现多级(N级)联动下拉列表框更新版,支持IE6,火狐

本文主要是介绍JavaScript实现多级(N级)联动下拉列表框更新版,支持IE6,火狐,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

特点:通用性强、实现了script和html分离

废话少说、文档就不给了。想研究代码的看我以前的一篇blog

一、文件及源码
cs.js
用函数和类两种方法实现,调用时只要调用一种就可以了。

<!--
/**
 * Function to setup a CascadeSelect
 * @version build 20060324
 * @author  KimSoft (jinqinghua [at] gmail.com)
 * @update
 */

/**
 * setupCascadeSelect
 * @param cascadeSelect select object
 * @param parent data index of parent
 * @param nodes array contains data with structure [[parent, text, value],[],...[]]
 * @param [optional] is onchange
 */
function setupCascadeSelect(cascadeSelect, parent, nodes, isOnChange) {
  if (isOnChange == null){
    isOnChange = false;
  }
  cascadeSelect.onchange = function (){
    setupCascadeSelect(this, this.options[this.selectedIndex].value, nodes, true);
  };
  cascadeSelect.getAttr = function (attrName) {
    return this[attrName] ? this[attrName] : this.getAttribute(attrName);
  };
  cascadeSelect.getElementById = function (id) {
    return this.form.elements[id] ? this.form.elements[id]: document.getElementById(id);
  };
  cascadeSelect.setDisplayStyle = function(value) {
    if (!this.multiple){
      this.style.display = value;
    }
    var subElement = this.getElementById(this.getAttr("subElement"));
    if (subElement != undefined){
      subElement.setDisplayStyle = this.setDisplayStyle;
    }
  };
  nodes.getChildNodesByParent = function (parent) {
    var childNodes = new Array();
    if (parent + "" == ""){
      return childNodes;
    }
    for (var i = 0; i < nodes.length; i++){
      if (nodes[i][0] != undefined && nodes[i][0] == parent){
        childNodes[childNodes.length] = nodes[i];
      }
    }
    return childNodes;
  }

  if(!isOnChange){
    cascadeSelect.options.length = 0;
    var defaultText = cascadeSelect.getAttr("defaultText");
    var defaultValue = cascadeSelect.getAttr("defaultValue");
    var selectedValue = cascadeSelect.getAttr("selectedValue");

    if (defaultText != undefined && defaultValue != undefined){
      cascadeSelect.options[cascadeSelect.options.length] = new Option(defaultText, defaultValue);
    }
    var childNodes = nodes.getChildNodesByParent(parent);
    for (var i = 0; i < childNodes.length; i++){
      cascadeSelect.options[cascadeSelect.options.length] = new Option(childNodes[i][1], childNodes[i][2]);
      if (selectedValue != undefined && selectedValue == childNodes[i][2]){
        cascadeSelect.selectedIndex = cascadeSelect.options.length - 1;
      }
    }
  }

  if (cascadeSelect.options.length > 0){
    cascadeSelect.setDisplayStyle("");
    var subElement = cascadeSelect.getElementById(cascadeSelect.getAttr("subElement"));
    if (subElement != undefined){
      setupCascadeSelect(subElement, cascadeSelect.options[cascadeSelect.selectedIndex].value, nodes, false);
    }
  } else {
    cascadeSelect.setDisplayStyle("none");
  }
}

/**
 * 以类的方法实现连动
 */
function CascadeSelect(element, parent, nodes){
  this.form = element.form;
  this.nodes = nodes;
  this.attributes = {
    "subElement"    : "subElement",
    "defaultText"   : "defaultText",
    "defaultValue"  : "defaultValue",
    "selectedValue" : "selectedValue"
  }
  this.build(element, parent, false);
}

CascadeSelect.prototype.getElementById = function (id) {
    return this.form.elements[id] ? this.form.elements[id]: document.getElementById(id);
};

CascadeSelect.prototype.getAttribute = function (element, attrName) {
    return element[attrName] ? element[attrName] : element.getAttribute(attrName);
};

CascadeSelect.prototype.getChildNodesByParent = function (parent) {
    var childNodes = new Array();
    if (parent + "" == ""){
      return childNodes;
    }
    for (var i = 0; i < this.nodes.length; i++){
      if (this.nodes[i][0] != undefined && this.nodes[i][0] == parent){
        childNodes[childNodes.length] = this.nodes[i];
      }
    }
    return childNodes;
  }

CascadeSelect.prototype.setDisplayStyle = function(element, value) {
  var cs = this;
    if (!element.multiple){
      element.style.display = value;
    }
    var subElement = this.getElementById(this.getAttribute(element, this.attributes["subElement"]));
    if (subElement != undefined){
      subElement.setDisplayStyle = function () {cs.setDisplayStyle;}
    }
  };

CascadeSelect.prototype.build = function (element, parent, isOnChange) {
  var cs = this;
  element.onchange = function () {
    cs.build(this, this.options[this.selectedIndex].value, true);
  }
  if(!isOnChange){
    element.options.length = 0;
    var defaultText = this.getAttribute(element, this.attributes["defaultText"]);
    var defaultValue = this.getAttribute(element, this.attributes["defaultValue"]);
    var selectedValue = this.getAttribute(element, this.attributes["selectedValue"]);
 //alert(selectedValue);

    if (defaultText != undefined && defaultValue != undefined){
      element.options[element.options.length] = new Option(defaultText, defaultValue);
    }
    var childNodes = this.getChildNodesByParent(parent);
    for (var i = 0; i < childNodes.length; i++){
      element.options[element.options.length] = new Option(childNodes[i][1], childNodes[i][2]);
   //alert("childNodes[i][2]:" + childNodes[i][2]);
      if (selectedValue != undefined && selectedValue == childNodes[i][2]){
  alert(selectedValue);
        element.selectedIndex = element.options.length - 1;
      }
    }
  }

  if (element.options.length > 0){
    this.setDisplayStyle(element, "");
    var subElement = this.getElementById(this.getAttribute(element, this.attributes["subElement"]));
    if (subElement != undefined){
      this.build(subElement, element.options[element.selectedIndex].value, false);
    }
  } else {
    this.setDisplayStyle(element, "none");
  }
}
//-->

二、demo加说明

demo_cs2.htm


<html>
<body>
<script language="JavaScript" type="text/javascript" src="cs.js"></script>
<script language="JavaScript" type="text/javascript">
<!--
/*
生成联动菜单数组,可以从数据库生成,形式如下[[parent, text, value], [parent, text, value]]
优化部分:
一、用数据直接量减少生成的字符,数据结构简单
二、parent,value部分尽量使用数字形式,value部分尽量使用单引号,以减少生成的数据大小
*/
var aryCertType = [
[0,'外语证书',671],
[71,'大学英语四级',672],
[71,'大学英语六级',673],
[71,'剑桥商务英语证书',674],
[71,'英语专业四级',675],
[71,'英语专业六级',676],
[71,'英语专业八级',677],
[71,'托福',678],
[71,'国际英文水平测试',679],
[671,'中级口译证书',680],
[671,'高级口译证书',681],
[671,'日语一级证书',682],
[671,'日语二级证书',683],
[671,'日语三级证书',684],
[671,'日语四级证书',685],
[671,'俄语四级证书',686],
[671,'俄语六级证书',687],
[671,'法语四级证书',688],
[671,'法语六级证书',689],
[671,'德语四级证书',690],
[671,'德语六级证书',691],
[671,'GRE',692],
[671,'GMAT',693],
[671,'FCE',694],
[671,'全国公共英语等级考试',695],
[0,'计算机证书',696],
[696,'全国计算机应用技术证书',697],
[696,'全国计算机软件技术资格与水平考试',698],
[696,'初级程序员',699],
[696,'程序员',700],
[696,'高级程序员',701],
[696,'系统分析员',702],
[696,'全国计算机等级一级',703],
[696,'全国计算机等级二级',704],
[696,'全国计算机等级三级A',705],
[696,'全国计算机等级四级',706],
[696,'微软认证专家',707],
[696,'微软认证系统工程师',708],
[696,'微软认证系统开发师',709],
[696,'Cisco认证网络规划和网络支持工程师',710],
[696,'Cisco认证网络专家',711],
[696,'Novell授权网络管理师',712],
[696,'Novell授权网络工程师',713],
[696,'Novell授权高级网络工程师',714],
[696,'Novell授权Internet专家',715],
[696,'Intel认证方案咨询专家',716],
[696,'SUN认证Java程序员',717],
[696,'3com认证网络大师',718],
[696,'Adobe认证专家',719],
[696,'Lotus专家认证应用开发师',720],
[696,'Lotus专家认证系统管理师',721],
[696,'Sybase认证考试',722],
[696,'Cisco认证网络支持工程师',723],
[696,'Cisco认证资深网络支持工程师',724],
[696,'Cisco认证网络设计工程师',725],
[696,'Cisco认证资深网络设计工程师',726],
[696,'计算机初级',727],
[696,'计算机中级',728],
[696,'网络初级证书',729],
[696,'全国计算机等级三级B',730],
[0,'会计证书',731],
[731,'注册会计师',732],
[731,'会计上岗证',733],
[731,'助理会计师',734],
[731,'中级会计师',735],
[731,'高级会计师',736],
[731,'会计电算化证书',737],
[731,'国际财务会计证书',738],
[0,'职称证书',739],
[739,'初级工程师',740],
[739,'中级工程师',741],
[739,'高级工程师',742],
[739,'助理工程师',743],
[739,'初级经济师',744],
[739,'中级经济师',745],
[739,'高级经济师',746],
[740,'助理经济师',747]
]

/*
文档加载完成时给控件加载自定义属性
subElement:    可选的。指定一个子对象,必须为一个HTML Select控件 
selectedValue: 可选的。指定选定的值,在回显示时非常方便
defaultText:   可选的。默认文本
defaultValue:  可选的。默认值
优化的好处:
一、集中到Script里,方便管理
二、防止一些编辑器报告讨厌的XX标准不支持此属性的警告
三、让网页通过标准验证
*/
window.onload = function(){
  form = document.forms[0];
  form.certType.setAttribute("subElement", "certName");
  //form.certType.setAttribute("selectedValue", 739);
  form.certType.setAttribute("defaultText", "不限1级");
  form.certType.setAttribute("defaultValue", "");
 
  form.certName.setAttribute("selectedValue", 746);
  form.certName.setAttribute("defaultText", "不限2级");
  form.certName.setAttribute("defaultValue", "");

/*
调用
优化后的好处:
一、只要一个方法,调用方便,重用性高
二、优化了算法,执行速度快
*/
  //setupCascadeSelect(form.certType, 0, aryCertType, false);
  new CascadeSelect(form.certType, 0, aryCertType);
}
-->
</script>
<form name="form1" method="post" action="">
  <select name="certType">
  </select>
  <select name="certName" οnchange="alert('xx');">
  </select>
</form>
<div id="times"></div>
</body>
</html>

三、不足的地方

1、onchange事件被重定义了,如果想在onchage执行其它的东东,想办法吧。:)

2、修改时的回显

这篇关于JavaScript实现多级(N级)联动下拉列表框更新版,支持IE6,火狐的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/230121

相关文章

Vue3 的 shallowRef 和 shallowReactive:优化性能

大家对 Vue3 的 ref 和 reactive 都很熟悉,那么对 shallowRef 和 shallowReactive 是否了解呢? 在编程和数据结构中,“shallow”(浅层)通常指对数据结构的最外层进行操作,而不递归地处理其内部或嵌套的数据。这种处理方式关注的是数据结构的第一层属性或元素,而忽略更深层次的嵌套内容。 1. 浅层与深层的对比 1.1 浅层(Shallow) 定义

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

【 html+css 绚丽Loading 】000046 三才归元阵

前言:哈喽,大家好,今天给大家分享html+css 绚丽Loading!并提供具体代码帮助大家深入理解,彻底掌握!创作不易,如果能帮助到大家或者给大家一些灵感和启发,欢迎收藏+关注哦 💕 目录 📚一、效果📚二、信息💡1.简介:💡2.外观描述:💡3.使用方式:💡4.战斗方式:💡5.提升:💡6.传说: 📚三、源代码,上代码,可以直接复制使用🎥效果🗂️目录✍️

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount