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')[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為選取值:
複製程式碼
複製程式碼
7. 依索引值設定任一option為選取值:
複製程式碼
程式碼如下:
複製程式碼
程式碼如下:
9.刪除Value=3的option :
複製程式碼
程式碼如下:
複製代碼
程式碼如下:
複製程式碼
程式碼如下:
12. 刪除最後一個option:
12. 刪除最後一個option:
$("select#sel option:last").remove(); 13. 刪除dropdownlist: 複製程式碼 程式碼如下: 14.在select後面添加一個option: 複製代碼 程式碼如下:
$("select#sel").append("f");
15. 在select前面加上一個option:
$("select#sel").prepend("0");
16. 遍歷option:
程式碼如下:
#sel option ').each(function (index, domEle) { //寫入程式碼});