淺談下拉菜單中的Option對象
1.創(chuàng)建Option對象
1.1 var optionEle1 = document.createElement('option');
1.2 var optionEle2 = new Option(text, value, defaultSelected, selected);
2.options屬性
2.1 select.options返回select標簽下面的Option對象的集合
3.清空下拉菜單
3.1 利用for循環(huán)刪除,注意數(shù)組長度的動態(tài)變化
3.2 select.options.length = 0;
4.應(yīng)用
<html> <head> <script language="javascript"> function number(){ var obj = document.getElementById("mySelect"); //obj.options[obj.selectedIndex] = new Option("我的吃吃","4");//在當前選中的那個的值中改變 //obj.options.add(new Option("我的吃吃","4"));再添加一個option //alert(obj.selectedIndex);//顯示序號,option自己設(shè)置的 //obj.options[obj.selectedIndex].text = "我的吃吃";更改值 //obj.remove(obj.selectedIndex);刪除功能 } </script> </head> <body> <select id="mySelect"> <option>我的包包</option> <option>我的本本</option> <option>我的油油</option> <option>我的擔子</option> </select> <input type="button" name="button" value="查看結(jié)果" onclick="number();"> </body> </html>
1.動態(tài)創(chuàng)建select
function createSelect(){ var mySelect = document.createElement("select"); mySelect.id = "mySelect"; document.body.appendChild(mySelect); }
2.添加選項option
function addOption(){ //根據(jù)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); }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//ZH-CN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html"> <head> <script language=JavaScript> function $(id) { return document.getElementById(id) } function show() { var selectObj=$("area") var myOption=document.createElement("option") myOption.setAttribute("value","10") myOption.appendChild(document.createTextNode("上海")) var myOption1=document.createElement("option") myOption1.setAttribute("value","100") myOption1.appendChild(document.createTextNode("南京")) selectObj.appendChild(myOption) selectObj.appendChild(myOption1) } function choice() { var index=$("area").selectedIndex; var val=$("area").options[index].getAttribute("value") if(val==10) { var i=$("context").childNodes.length-1; var remobj=$("context").childNodes[i]; remobj.removeNode(true) var sh=document.createElement("select") sh.add(new Option("浦東新區(qū)","101")) sh.add(new Option("黃浦區(qū)","102")) sh.add(new Option("徐匯區(qū)","103")) sh.add(new Option("普陀區(qū)","104")) $("context").appendChild(sh) } if(val==100) { var i=$("context").childNodes.length-1; var remobj=$("context").childNodes[i]; remobj.removeNode(true) var nj=document.createElement("select") nj.add(new Option("玄武區(qū)","201")) nj.add(new Option("白下區(qū)","202")) nj.add(new Option("下關(guān)區(qū)","203")) nj.add(new Option("棲霞區(qū)","204")) $("context").appendChild(nj) } } function calc() { var x=$("context").childNodes.length-1; alert(x) } function remove() { var i=$("context").childNodes.length-1; var remobj=$("context").childNodes[i]; remobj.removeNode(true) } </script> <body> <div id="context"> <select id="area" on change="choice()"> </select> </div> <input type=button value="顯示" onclick="show()"> <input type=button value="計算結(jié)點" onclick="calc()"> <input type=button value="刪除" onclick="remove()"> </body> </html>
以上所述就是本文的全部內(nèi)容了,希望大家能夠喜歡。
- 改進版:在select中添加、修改、刪除option元素
- javascript Select標記中options操作方法集合
- jquery操作select option 的代碼小結(jié)
- 淺析jQuery對select操作小結(jié)(遍歷option,操作option)
- 刪除select中所有option選項jquery代碼
- JQuery中對Select的option項的添加、刪除、取值
- 如何獲取select下拉框的值(option沒有及有value屬性)
- js select option對象小結(jié)
- JS動態(tài)添加與刪除select中的Option對象(示例代碼)
- JS動態(tài)添加與刪除select中的Option對象(示例代碼)
- JS獲取select-option-text_value的方法
- js獲取select默認選中的Option并不是當前選中值
- js添加select下默認的option的value和text的方法
相關(guān)文章
JS數(shù)組索引檢測中的數(shù)據(jù)類型問題詳解
這篇文章主要給大家介紹了關(guān)于JS數(shù)組索引檢測中的數(shù)據(jù)類型問題的相關(guān)資料,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2021-01-01js獲取url中的參數(shù)且參數(shù)為中文時通過js解碼
這篇文章主要介紹了url中傳遞中文參數(shù)的時候通過js解碼,需要的朋友可以參考下2014-03-03js簡單實現(xiàn)調(diào)整網(wǎng)頁字體大小的方法
這篇文章主要介紹了js簡單實現(xiàn)調(diào)整網(wǎng)頁字體大小的方法,通過javascript動態(tài)修改頁面元素樣式實現(xiàn)調(diào)整網(wǎng)頁字體的功能,非常簡單實用,需要的朋友可以參考下2016-07-07