How do I select all check box when I click on Select button using jQuery

前端 未结 9 937
遇见更好的自我
遇见更好的自我 2020-12-21 20:22

I have HTML page which have multiple check boxes and individually they can be checked. I have button select, so what I am suppose to do is. When I click on sel

相关标签:
9条回答
  • 2020-12-21 20:39

    Try this-

    var checked = true;
    $('#selectAll').click(function(event) {
        $('table tr').each(function( index ) {
            $(this).find('input[type="checkbox"]').prop(checked, true);
        });
        checked = !checked;
    });
    
    0 讨论(0)
  • 2020-12-21 20:47

    Check this jsFiddle

    $(document).ready(function() {
       $('#selectAll').click(function() {
            $(':checkbox').prop('checked', !$(':checkbox').prop('checked'));
        });
    });
    

    You can simply use it For more info on jQuery visit w3schools-jquery

    0 讨论(0)
  • 2020-12-21 20:49

    You can do it like this also with ':checkbox' selector.

    $(document).ready(function () {
    
        $('#selectAll').on('click', function () {
            $(':checkbox').each(function () {
    
                $(this).click();
            });
        });
    });
    
    0 讨论(0)
提交回复
热议问题