select">jquery select取值,賦值操作
一、獲取select
獲取select 選中的 text :
$("#ddlregtype").find("option:selected").text();
獲取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:
1 var count = $("#ddlregtype option").length;
2 3 for(var i=0;i5 if($("#ddlregtype ").get(0).options[i].text == text)
6
10 }
$("#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();
下拉框:
稍微解釋一下:
1.select[@name='country'] option[@selected] 表示具有name 屬性,
並且該屬性值為'country' 的select元素 裡面的具有selected 屬性的option 元素;
可以看出有@開頭的就表示後面跟的是屬性。
2,單選框:
$("input[@type=radio][@checked]").val(); //得到單選框的選中項的值(注意中間沒有空格)
$("input[@type=radio][@value=2]").attr("checked",'checked'); //設定單選框value=2的為選中狀態.(注意中間沒有空格)
3,核取方塊:
$("input[@type=checkbox][@checked]").val(); //得到核取方塊的選中的第一項的值
$("input[@type=checkbox][@checked]").each(function());
$("#chk1").attr("checked",'');//不打勾
$("#chk2").attr("checked",true);//打勾
if($("#chk1").attr('checked')==undefined){} //判斷是否已經打勾
//取得下拉列表的選取值
$(#testselect option:selected').text();
或$("#testselect").find('option:selected').text();
或$("#testselect").val();
jquery select取值,賦值操作
select jquery select取值,賦值操作 一 獲取select 獲取select 選中的 text ddlregtype find option selected text 獲取select選中的索引 ddlregtype get 0 selectedindex 二 設定select ...
jquery select取值,賦值操作
jquery select取值,賦值操作 一 獲取select獲取select 選中的 text ddlregtype find option selected text 獲取select選中的索引 ddlregtype get 0 selectedindex 二 設定select設 select ...
jquery select取值,賦值操作
2011 08 05 select jquery select取值,賦值操作 一 獲取select 獲取select 選中的 text ddlregtype find option selected text 獲取select選中的索引 ddlregtype get 0 selectedindex ...