jQuery獲取select的值

2022-07-15 01:33:15 字數 1668 閱讀 9532

1.獲取第乙個option的值

$('#test option:first').val();
2.最後乙個option的值

$('#test option:last').val();
3.獲取第二個option的值

$('#test option:eq(1)').val();
4.獲取選中的值

$('#test').val();

$('#test option:selected').val();

5.設定值為2的option為選中狀態

$('#test').attr('value','2');
6.設定最後乙個option為選中

$('#test option:last').attr('selected','selected');

$("#test").attr('value' , $('#test option:last').val());

$("#test").attr('value' , $('#test option').eq($('#test option').length - 1).val());

7.獲取select的長度

$('#test option').length;
8.新增乙個option

9.添除選中項

$('#test option:selected').remove();
10.刪除項選中(這裡刪除第一項)

$('#test option:first').remove();
11.指定值被刪除

$('#test option').each(function()

});$('#test option[value=5]').remove();

12.獲取第乙個group的標籤

$('#test optgroup:eq(0)').attr('label');
13.獲取第二group下面第乙個option的值

$('#test optgroup:eq(1) : option:eq(0)').val();
14.根據option的值選中option

$("#sel option:contains('c')").prop("selected", true);

jQuery獲取select的值

獲取select的值 test class form control name code 請選擇option 使用型別option 前端型別option value road level 車道朝向option value lane direction 道路等級option select 獲取選擇的值...

jQuery獲取Select元素

這個表示 假如我們希望當選擇選擇第三類時 如果第四類中有資料則刪除,如果沒有資料第四類的商品中的為預設值。在後面學習了ajax技術後經常會使用到!獲取select 獲取select 選中的 text ddlregtype find option selected text 獲取select選中的 v...

jquery獲取select選中的值

jquery獲取select選中的值 誤區 一直以為jquery獲取select中option被選中的文字值,是這樣寫的 s text 獲取所有option的文字值 實際上應該這樣 s option selected text 獲取選中的option的文字值 獲取select中option的被選中的...