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

前端 未结 9 938
遇见更好的自我
遇见更好的自我 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:49

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

    $(document).ready(function () {
    
        $('#selectAll').on('click', function () {
            $(':checkbox').each(function () {
    
                $(this).click();
            });
        });
    });
    

提交回复
热议问题