jquery radio取值,checkbox取值,select取值,radio選中,checkbox選中,select選中,及其相關

來源:互聯網
上載者:User

標籤:append   items   selector   表單元素   最大的   div   表單   選擇   get   

1、jQuery擷取Select選擇的Text和Value: 

$("#select_id").change(function(){//code...}); //為Select添加事件,當選擇其中一項時觸發 var checkText=$("#select_id").find("option:selected").text(); //擷取Select選擇的text var checkValue=$("#select_id").val(); //擷取Select選擇的Value var checkIndex=$("#select_id ").get(0).selectedIndex; //擷取Select選擇的索引值 var maxIndex=$("#select_id option:last").attr("index"); //擷取Select最大的索引值

2、jQuery添加/刪除Select的Option項: 

$("#select_id").append("<option value=‘Value‘>Text</option>"); //為Select追加一個Option(下拉項) $("#select_id").prepend("<option value=‘0‘>請選擇</option>"); //為Select插入一個Option(第一個位置) $("#select_id option:last").remove(); //刪除Select中索引值最大Option(最後一個) $("#select_id option[index=‘0‘]").remove(); //刪除Select中索引值為0的Option(第一個) $("#select_id option[value=‘3‘]").remove(); //刪除Select中Value=‘3‘的Optiona $("#select_id option[text=‘4‘]").remove(); //刪除Select中Text=‘4‘的Optiona

3、select選項清空:

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

 

<select class="selector"></select>

1、設定value為pxx的項選中

$(".selector").val("pxx");

2、設定text為pxx的項選中

$(".selector").find("option[text=‘pxx‘]").attr("selected",true);

 這裡有一個中括弧的用法,中括弧裡的等號的前面是屬性名稱,不用加引號。很多時候,中括弧的運用可以使得邏輯變得很簡單。

3、擷取當前選中項的value

 $(".selector").val();

4、擷取當前選中項的text

$(".selector").find("option:selected").text();

這裡用到了冒號,掌握它的用法並舉一反三也會讓代碼變得簡潔。

 

 

很多時候用到select的級聯,即第二個select的值隨著第一個select選中的值變化。這在jquery中是非常簡單的。

如:

$(".selector1").change(function(){     // 先清空第二個      $(".selector2").empty();     // 實際的應用中,這裡的option一般都是用迴圈產生多個了      var option = $("<option>").val(1).text("pxx");      $(".selector2").append(option);});

 

 

jQuery設定Select選擇的 Text和Value:
文法解釋:

$("#select_id ").get(0).selectedIndex=1;  //設定Select索引值為1的項選中$("#select_id ").val(4);   // 設定Select的Value值為4的項選中$("#select_id option[text=‘jQuery‘]").attr("selected", true);   //設定Select的Text值為jQuery的項選中

 

 

1、獲 取一組radio被選中項的值 

var item = $(‘input[name=items][checked]‘).val(); 

2、獲 取select被選中項的文本

var item = $("select[name=items] option[selected]").text(); 

3、select下拉框的第二個元素為當前選中值 

$(‘#select_id‘)[0].selectedIndex = 1; 

4、radio單選組的第二個元素為當前選中值 

$(‘input[name=items]‘).get(1).checked = true; 

 

 

擷取值:

1、文字框,文本地區

$("#txt").attr("value");

2、多選框 checkbox

$("#checkbox_id").attr("value");

3、單選組radio

$("input[type=radio][checked]").val(); 

4、下拉框select

$(‘#sel‘).val(); 

 

 

控製表單元素: 

1、文字框,文本地區

$("#txt").attr("value",‘‘);//清空內容 
$("#txt").attr("value",‘11‘);//填充內容 

2、多選框checkbox

$("#chk1").attr("checked",‘‘);//不打勾 $("#chk2").attr("checked",true);//打勾 if($("#chk1").attr(‘checked‘)==undefined) //判斷是否已經打勾 

3、單選組 radio

("input[type=radio]").attr("checked",‘2‘);//設定value=2的項目為當前選中項 

4、下拉框 select

$("#sel").attr("value",‘-sel3‘);//設定value=-sel3的項目為當前選中項 
$("<option value=‘1‘>1111</option><option value=‘2‘>2222</option>").appendTo("#sel")//添加下拉框的option $("#sel").empty();//清空下拉框

 

jquery radio取值,checkbox取值,select取值,radio選中,checkbox選中,select選中,及其相關

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.