jQuery: how can I select only the checkboxes that are visible and checked?

后端 未结 3 2143
后悔当初
后悔当初 2021-02-15 11:21

I\'m trying to check whether or not all the visible check boxes in a certain series are checked and i thought of just counting those that are visible and those that are visible

3条回答
  •  失恋的感觉
    2021-02-15 12:01

    This works fine for me.

    $(".inputClass:checked:visible");
    $(".inputClass:checked:visible").length;
    

    OR adapting the above answer.

    jsfiddle

    $('input:visible:checked').each(function() {
        $(this).wrap('
    '); });

提交回复
热议问题