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

前端 未结 9 981
遇见更好的自我
遇见更好的自我 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;
    });
    

提交回复
热议问题