Check and Uncheck Checkbox Dynamically with jQuery : bug?

前端 未结 5 2249
我在风中等你
我在风中等你 2021-02-13 02:08

I made a script in order to control master & slave checkboxes (automatic checking and unchecking).

Here is my JS :

$(document).ready(function() {

           


        
5条回答
  •  北荒
    北荒 (楼主)
    2021-02-13 02:46

    You could try this.

    $('#myCheck').click(function() {
        var checkBoxes = $(this).siblings('input[type=checkbox]');
        checkBoxes.prop('checked', $(this).is(':checked') ? true : false);
    });
    

提交回复
热议问题