jQuery獲取Select元素

2022-01-16 09:51:38 字數 1218 閱讀 3485

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

獲取select :

獲取select 選中的 text :

$("#ddlregtype").find("option:selected").text();

獲取select選中的 value:

$("#ddlregtype ").val();

獲取select選中的索引:

$("#ddlregtype ").get(0).selectedindex;

設定select:

設定select 選中的索引:

$("#ddlregtype ").get(0).selectedindex=index;//index為索引值

設定select 選中的value:

$("#ddlregtype ").attr("value","normal「);

$("#ddlregtype ").val("normal");

$("#ddlregtype ").get(0).value = value;

設定select 選中的text:

var count=$("#ddlregtype option").length;

for(var i=0;i

$("#select_id option[text='jquery']").attr("selected", true);

設定select option項:

$("#select_id").prepend("請選擇"); //在前面插入一項option

$("#select_id option:last").remove(); //刪除索引值最大的option

$("#select_id option[index='0']").remove();//刪除索引值為0的option

$("#select_id option[value='3']").remove(); //刪除值為3的option

$("#select_id option[text='4']").remove(); //刪除text值為4的option

清空 select:

$("#ddlregtype ").empty();

jquery獲得值:

.val()

.text()

設定值 

.val('在這裡設定值')

jQuery獲取select的值

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

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 ...

JQuery獲取和設定Select選項

jquery獲取和設定select選項 獲取select 獲取select 選中的 text ddlregtype find option selected text 獲取select選中的 value ddlregtype val 獲取select選中的索引 ddlregtype get 0 se...