DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> Jquery操作下拉框(DropDownList)實現取值賦值
Jquery操作下拉框(DropDownList)實現取值賦值
編輯:JQuery特效代碼     
1. 獲取選中項:
. 代碼如下:
獲取選中項的Value值:
$('select#sel option:selected').val();
或者
$('select#sel').find('option:selected').val();
獲取選中項的Text值:
$('select#seloption:selected').text();
或者
$('select#sel').find('option:selected').text();

2. 獲取當前選中項的索引值:
. 代碼如下:
$('select#sel').get(0).selectedIndex;

3. 獲取當前option的最大索引值:
. 代碼如下:
$('select#sel option:last').attr("index")

4. 獲取DropdownList的長度:
. 代碼如下:
$('select#sel')[0].options.length;
或者
$('select#sel').get(0).options.length;

5. 設置第一個option為選中值:
. 代碼如下:
$('select#sel option:first').attr('selected','true')
或者
$('select#sel')[0].selectedIndex = 0;

6. 設置最後一個option為選中值:
. 代碼如下:
$('select#sel option:last).attr('selected','true')

7. 根據索引值設置任意一個option為選中值:
. 代碼如下:
$('select#sel')[0].selectedIndex =索引值;索引值=0,1,2....

8. 設置Value=4 的option為選中值:
. 代碼如下:
$('select#sel').attr('value','4');
或者
$("select#sel option[value='4']").attr('selected', 'true');

9. 刪除Value=3的option:
. 代碼如下:
$("select#sel option[value='3']").remove();

10.刪除第幾個option:
. 代碼如下:
$(" select#sel option ").eq(索引值).remove();索引值=0,1,2....
如刪除第3個Radio:
$(" select#sel option ").eq(2).remove();

11.刪除第一個option:
. 代碼如下:
$(" select#sel option ").eq(0).remove();
或者
$("select#sel option:first").remove();

12. 刪除最後一個option:
. 代碼如下:
$("select#sel option:last").remove();

13. 刪除dropdownlist:
. 代碼如下:
$("select#sel").remove();

14.在select後面添加一個option:
. 代碼如下:
$("select#sel").append("f");

15. 在select前面添加一個option:
. 代碼如下:
$("select#sel").prepend("0");

16. 遍歷option:
. 代碼如下:
$(' select#sel option ').each(function (index, domEle) {
//寫入代碼
});
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved