JQuery radio(選項按鈕)操作方法匯總,jqueryradio

來源:互聯網
上載者:User

JQuery radio(選項按鈕)操作方法匯總,jqueryradio

隨著Jquery的作用越來越大,使用的朋友也越來越多。在Web中,由於CheckBox、Radiobutton 、DropDownList等控制項使用的頻率比較高,就關係到這些控制項在Jquery中的操作問題。由於Jquery的版本更新很快,代碼的寫法也改變了許多,以下Jquery代碼適query1.4版本以上。

1.擷取選中值,三種方法都可以:
複製代碼 代碼如下:
$('input:radio:checked').val();
$("input[type='radio']:checked").val();
$("input[name='rd']:checked").val();

2.設定第一個Radio為選中值:
複製代碼 代碼如下:
    $('input:radio:first').attr('checked', 'checked');

或者
複製代碼 代碼如下:
$('input:radio:first').attr('checked', 'true');

註:attr("checked",'checked')= attr("checked", 'true')= attr("checked", true)

3.設定最後一個Radio為選中值:
複製代碼 代碼如下:
$('input:radio:last').attr('checked', 'checked');

或者
複製代碼 代碼如下:
$('input:radio:last').attr('checked', 'true');

4.根據索引值設定任意一個radio為選中值:
複製代碼 代碼如下:
$('input:radio').eq(索引值).attr('checked', 'true');索引值=0,1,2....

或者
複製代碼 代碼如下:
$('input:radio').slice(1,2).attr('checked', 'true');

5.根據Value值設定Radio為選中值
複製代碼 代碼如下:
$("input:radio[value='rd2']").attr('checked','true');

或者
複製代碼 代碼如下:
$("input[value='rd2']").attr('checked','true');

6.刪除Value值為rd2的Radio
複製代碼 代碼如下:
$("input:radio[value='rd2']").remove();

7.刪除第幾個Radio
複製代碼 代碼如下:
$("input:radio").eq(索引值).remove();索引值=0,1,2....

如刪除第3個Radio:$("input:radio").eq(2).remove();

8.遍曆Radio
複製代碼 代碼如下:
$('input:radio').each(function(index,domEle){

     //寫入代碼

});

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.