[removed] Unchecking all checkboxes

后端 未结 6 905
独厮守ぢ
独厮守ぢ 2021-01-18 07:42

I have problem dealing with unchecking all checkboxes. When I click on a toggle all checkbox, it could check all checkboxes. But if I uncheck the toggle all checkbox, nothin

6条回答
  •  感动是毒
    2021-01-18 07:56

    After validating that isAllCheck is correct with your UI logic, you may do both with a simple vanilla-js one-liner

    Array.from(document.querySelectorAll('input[type=checkbox]').forEach(el => el.checked = isAllCheck);
    

提交回复
热议问题