Check all other checkboxes when one is checked

后端 未结 10 804
感情败类
感情败类 2020-12-09 23:11

I have a form and group of checkboxes in it. (These checkboxes are dynamically created but I dont think it is important for this question). The code that generates them look

10条回答
  •  鱼传尺愫
    2020-12-09 23:23

    demo

    updated_demo

    HTML:

    
    
    




    JS:

    $('.selectall').click(function() {
        if ($(this).is(':checked')) {
            $('div input').attr('checked', true);
        } else {
            $('div input').attr('checked', false);
        }
    });
    

提交回复
热议问题