html中的select标签,也是asp.net中的asp:DropDownList控件。 javascript对它们的操作 一、基础理解 复制代码 代码如下: var e = document.getElementById("selectId"); e. options= new Option("文本","值") ; //创建一个option对象,即在标签中创建一个或多个文本 //options是个数组,里面可以存放多个文本这样的标签 1:options[ ]数组的属性: length属性---------长度属性 selectedIndex属性--------当前被选中的框中的文本的索引值,此索引值是内存自动分配的(0,1,2,3.....)对应(第一个文本值,第二个文本值,第三个文本值,第四个文本值..........) 2:单个option的属性(---obj.options[obj.selecedIndex]是指定的某个标签,是一个---) text属性---------返回/指定 文本 value属性------返回/指定 值,与一致。 index属性-------返回下标, selected 属性-------返回/指定该对象是否被选中.通过指定 true 或者 false,可以动态的改变选中项 defaultSelected 属性-----返回该对象默认是否被选中。true / false。 3:option的方法 增加一个标签-----obj.options.add(new("文本","值")); 删除一个 标签-----obj.options.remove(obj.selectedIndex) 获得一个 标签的文本-----obj.options[obj.selectedIndex].text 修改一个 标签的值-----obj.options[obj.selectedIndex]=new Option("新文本","新值") 删除所有 标签-----obj.options.length = 0 获得一个 标签的值-----obj.options[obj.selectedIndex].value 注意: a:上面的写的是如这样类型的方法obj.options.function()而不写obj.funciton,是因为为了考虑在IE和FF 下的兼容,如obj.add()只能在IE中有效. b:obj.option中的option不需要大写,new Option中的Option需要大写 二 、应用 复制代码 代码如下: <BR>function number(){ <BR>var obj = document.getElementById("mySelect"); <BR>//obj.options[obj.selectedIndex] = new Option("我的吃吃","4");//在当前选中的那个的值中改变 <BR>//obj.options.add(new Option("我的吃吃","4"));再添加一个option <BR>//alert(obj.selectedIndex);//显示序号,option自己设置的 <BR>//obj.options[obj.selectedIndex].text = "我的吃吃";更改值 <BR>//obj.remove(obj.selectedIndex);删除功能 <BR>} <BR> 我的包包 我的本本 我的油油 我的担子 1.动态创建select 复制代码 代码如下: function createSelect(){ var mySelect = document.createElement("select"); mySelect.id = "mySelect"; document.body.appendChild(mySelect); } 2.添加选项option 复制代码 代码如下: function addOption(){ //根据id查找对象, var obj=document.getElementById('mySelect'); //添加一个选项 obj.add(new Option("文本","值")); //这个只能在IE中有效 obj.options.add(new Option("text","value")); //这个兼容IE与firefox } 3.删除所有选项option 复制代码 代码如下: function removeAll(){ var obj=document.getElementById('mySelect'); obj.options.length=0; } 4.删除一个选项option 复制代码 代码如下: function removeOne(){ var obj=document.getElementById('mySelect'); //index,要删除选项的序号,这里取当前选中选项的序号 var index=obj.selectedIndex; obj.options.remove(index); } 5.获得选项option的值 复制代码 代码如下: var obj=document.getElementById('mySelect'); var index=obj.selectedIndex; //序号,取当前选中选项的序号 var val = obj.options[index].value; 6.获得选项option的文本 复制代码 代码如下: var obj=document.getElementById('mySelect'); var index=obj.selectedIndex; //序号,取当前选中选项的序号 var val = obj.options[index].text; 7.修改选项option 复制代码 代码如下: var obj=document.getElementById('mySelect'); var index=obj.selectedIndex; //序号,取当前选中选项的序号 var val = obj.options[index]=new Option("新文本","新值"); 8.删除select 复制代码 代码如下: function removeSelect(){ var mySelect = document.getElementById("mySelect"); mySelect.parentNode.removeChild(mySelect); } <BR>function $(id) <BR>{ <BR>return document.getElementById(id) <BR>} <BR>function show() <BR>{ <BR>var selectObj=$("area") <BR>var myOption=document.createElement("option") <BR>myOption.setAttribute("value","10") <BR>myOption.appendChild(document.createTextNode("上海")) <BR>var myOption1=document.createElement("option") <BR>myOption1.setAttribute("value","100") <BR>myOption1.appendChild(document.createTextNode("南京")) <BR>selectObj.appendChild(myOption) <BR>selectObj.appendChild(myOption1) <BR>} <BR>function choice() <BR>{ <BR>var index=$("area").selectedIndex; <BR>var val=$("area").options[index].getAttribute("value") <BR>if(val==10) <BR>{ <BR>var i=$("context").childNodes.length-1; <BR>var remobj=$("context").childNodes[i]; <BR>remobj.removeNode(true) <BR>var sh=document.createElement("select") <BR>sh.add(new Option("浦东新区","101")) <BR>sh.add(new Option("黄浦区","102")) <BR>sh.add(new Option("徐汇区","103")) <BR>sh.add(new Option("普陀区","104")) <BR>$("context").appendChild(sh) <BR>} <BR>if(val==100) <BR>{ <BR>var i=$("context").childNodes.length-1; <BR>var remobj=$("context").childNodes[i]; <BR>remobj.removeNode(true) <BR>var nj=document.createElement("select") <BR>nj.add(new Option("玄武区","201")) <BR>nj.add(new Option("白下区","202")) <BR>nj.add(new Option("下关区","203")) <BR>nj.add(new Option("栖霞区","204")) <BR>$("context").appendChild(nj) <BR>} <BR>} <BR>function calc() <BR>{ <BR>var x=$("context").childNodes.length-1; <BR>alert(x) <BR>} <BR>function remove() <BR>{ <BR>var i=$("context").childNodes.length-1; <BR>var remobj=$("context").childNodes[i]; <BR>remobj.removeNode(true) <BR>} <BR> change="choice()"> 根据这些东西,自己用JQEURY AJAX+JSON实现了一个小功能如下: JS代码:(只取了于SELECT相关的代码) 复制代码 代码如下: /** * @description 构件联动下拉列表 (用JQUERY 的AJAX配合JSON实现) * @prarm selectId 下拉列表的ID * @prarm method 要调用的方法名称 * @prarm temp 此处存放软件ID * @prarm url 要跳转的地址 */ function linkAgeJson(selectId,method,temp,url){ $j.ajax({ type: "get",//使用get方法访问后台 dataType: "json",//返回json格式的数据 url: url,//要访问的后台地址 data: "method=" + method+"&temp="+temp,//要发送的数据 success: function(msg){//msg为返回的数据,在这里做数据绑定 var data = msg.lists; coverJsonToHtml(selectId,data); } }); } /** * @description 将JSON数据转换成HTML数据格式 * @prarm selectId 下拉列表的ID * @prarm nodeArray 返回的JSON数组 * */ function coverJsonToHtml(selectId,nodeArray){ //get select var tempSelect=$j("#"+selectId); //clear select value isClearSelect(selectId,'0'); var tempOption=null; for(var i=0;i//create select Option tempOption= $j(''+nodeArray[i].mc+' '); //put Option to select tempSelect.append(tempOption); } // 获取退化构件列表 getCpgjThgl(selectId,'thgjDm'); } /** * @description 清空下拉列表的值 * @prarm selectId 下拉列表的ID * @prarm index 开始清空的下标位置 */ function isClearSelect(selectId,index){ var length=document.getElementById(selectId).options.length; while(length!=index){ //长度是在变化的,因为必须重新获取 length=document.getElementById(selectId).options.length; for(var i=index;idocument.getElementById(selectId).options.remove(i); length=length/2; } } /** * @description 获取退化构件列表 * @prarm selectId1 引用软件下拉列表的ID * @prarm selectId2 退化构件下拉列表的ID */ function getCpgjThgl(selectId1,selectId2){ var obj1=document.getElementById(selectId1);//引用软件下拉列表 var obj2=document.getElementById(selectId2);//退化构件下拉列表 var len=obj1.options.length; //当引用软件列表长度等于1时返回,不做操作 if(len==1){ return false; } //清空下拉列表的值,两种方式都可以 // isClearSelect(selectId2,'1'); document.getElementById(selectId2).length=1; for(var i=0;ivar option= obj1.options[i]; //引用软件被选中项不加入 if(i!=obj1.selectedIndex){ //克隆OPTION并添加到SELECT中 obj2.appendChild(option.cloneNode(true)); } } } HTML代码: 复制代码 代码如下: *引用软件: onClick="linkAgeTree('linkage','yyrjtree','yyrjMc','yyrjDm','linkageTree','1');" value="选择..."> *引用分版: 退化构件: 无