jquery操作複選框(checkbox)的12個小技巧總結

來源:互聯網
上載者:User

標籤:strong   io   cti   代碼   re   c   

1、擷取單個checkbox選中項(三種寫法)
$("input:checkbox:checked").val()
或者
$("input:[type=‘checkbox‘]:checked").val();
或者
$("input:[name=‘ck‘]:checked").val();

2、 擷取多個checkbox選中項
$(‘input:checkbox‘).each(function() {
        if ($(this).attr(‘checked‘) ==true) {
                alert($(this).val());
        }
});

3、設定第一個checkbox 為選中值
$(‘input:checkbox:first‘).attr("checked",‘checked‘);
或者
$(‘input:checkbox‘).eq(0).attr("checked",‘true‘);

4、設定最後一個checkbox為選中值
$(‘input:radio:last‘).attr(‘checked‘, ‘checked‘);
或者
$(‘input:radio:last‘).attr(‘checked‘, ‘true‘);

5、根據索引值設定任意一個checkbox為選中值
$(‘input:checkbox).eq(索引值).attr(‘checked‘, ‘true‘);索引值=0,1,2....
或者
$(‘input:radio‘).slice(1,2).attr(‘checked‘, ‘true‘);

6、選中多個checkbox同時選中第1個和第2個的checkbox
$(‘input:radio‘).slice(0,2).attr(‘checked‘,‘true‘);

7、根據Value值設定checkbox為選中值
$("input:checkbox[value=‘1‘]").attr(‘checked‘,‘true‘);

8、刪除Value=1的checkbox
$("input:checkbox[value=‘1‘]").remove();

9、刪除第幾個checkbox
$("input:checkbox").eq(索引值).remove();索引值=0,1,2....
如刪除第3個checkbox:
$("input:checkbox").eq(2).remove();

10、遍曆checkbox
$(‘input:checkbox‘).each(function (index, domEle) {
//寫入代碼
});

11、全部選中
$(‘input:checkbox‘).each(function() {
        $(this).attr(‘checked‘, true);
});

12、全部取消選擇
$(‘input:checkbox‘).each(function () {
        $(this).attr(‘checked‘,false);
});

聯繫我們

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