DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jquery操作select option 的代碼小結
jquery操作select option 的代碼小結
編輯:JQuery特效代碼     
1、獲取選中select的value和text,html代碼如下:
代碼如下:
<select id="mySelect">
<option value="1">one</option>
<option value="2">two</option>
<option value="3">three</option>
</select>

則可通過以下script代碼s來獲取選中的value和text
代碼如下:
$("#mySelect").val(); //獲取選中記錄的value值
$("#mySelect option:selected").text(); //獲取選中記錄的text值

2、運用new Option("文本","值")方法添加選項option
代碼如下:
var obj = document.getElementById("mySelect");
obj.add(new Option("4","4"));

3、刪除所有選項option
代碼如下:
var obj = document.getElementById("mySelect");
obj.options.length = 0;

4、刪除選中選項option
代碼如下:
var obj = document.getElementById("mySelect");
var index = obj.selectedIndex;
obj.options.remove(index);

5、修改選中選項option
代碼如下:
var obj = document.getElementById("mySelect");
var index = obj.selectedIndex;
obj.options[index] = new Option("three",3); //更改對應的值
obj.options[index].selected = true; //保持選中狀態

6、刪除select
代碼如下:
var obj = document.getElementById("mySelect");
obj.parentNode.removeChild(obj); //移除當前對象

7、select選擇的響應事件
代碼如下:
$("#mySelect").change(function(){
//添加所需要執行的操作代碼
})
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved