jquery對select的操作

2021-08-27 05:09:02 字數 1716 閱讀 6256

如何用jquery獲得select的值,在網上找了看了一下,下面將總結一下:

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下拉框的基本操作大全

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

jQuery 對 Select 的操作

取得下拉列表的選取值 testselect option selected text 或 testselect find option selected text 或 testselect val 記性不好的可以收藏下 1,下拉框 稍微解釋一下 1.select name country optio...

jQuery對select的操作

獲取select 獲取select 選中的 text selectid find option selected text 獲取select選中的 value selectid val 獲取select選中的索引 selectid get 0 selectedindex 設定select 設定sel...