jquery select all checkboxes

前端 未结 19 2729
情书的邮戳
情书的邮戳 2020-12-13 12:36

I have a series of checkboxes that are loaded 100 at a time via ajax.

I need this jquery to allow me to have a button when pushed check all on screen. If more are lo

19条回答
  •  执念已碎
    2020-12-13 13:32

    All Nebraska Florida
    $(document).ready(function(){ $("input[type=checkbox].selAllChksInGroup").on("click.chkAll", function( event ){ $(this).parents('.control-group:eq(0)').find(':checkbox').prop('checked', this.checked); }); });

提交回复
热议问题