How to implement “select all” check box in HTML?

前端 未结 29 2874
悲哀的现实
悲哀的现实 2020-11-22 11:09

I have an HTML page with multiple checkboxes.

I need one more checkbox by the name \"select all\". When I select this checkbox all checkboxes in the HTML page must b

29条回答
  •  温柔的废话
    2020-11-22 11:39

    Slightly changed version which checks and unchecks respectfully

    $('#select-all').click(function(event) {
            var $that = $(this);
            $(':checkbox').each(function() {
                this.checked = $that.is(':checked');
            });
        });
    

提交回复
热议问题