jquery 獲取和設定 select下拉框的值

2021-09-30 08:30:20 字數 1171 閱讀 4136

獲取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();

獲取 select 選中值的索引:

var title=document.getelementbyid("pertitle");

var id=title.selectedindex;

JQuery獲取和設定Select選項

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

JQuery獲取和設定Select選項

jquery獲取和設定select選項 獲取select 獲取select 選中的 text ddlregtype find option selected text 或者 ddlregtype find option selected text 獲取select選中的 value ddlregty...

JQuery獲取和設定Select選項

jquery獲取和設定select選項 獲取select 獲取select 選中的 text ddlregtype find option selected text 或者 ddlregtype find option selected text 獲取select選中的 value ddlregty...