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

前端 未结 29 2896
悲哀的现实
悲哀的现实 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:40

    You may have different sets of checkboxes on the same form. Here is a solution that selects/unselects checkboxes by class name, using vanilla javascript function document.getElementsByClassName

    The Select All button

     Select All
    

    Some of the checkboxes to select

    
    
    

    The javascript

        function selectAll() {
            var blnChecked = document.getElementById("select_all_invoices").checked;
            var check_invoices = document.getElementsByClassName("check_invoice");
            var intLength = check_invoices.length;
            for(var i = 0; i < intLength; i++) {
                var check_invoice = check_invoices[i];
                check_invoice.checked = blnChecked;
            }
        }
    

提交回复
热议问题