我的复选框设置为 Category Subcategorywise ...
Company
Microsoft
Apple
Country
USA
UK
和附加到每个项目的复选框。因此,如果我单击 Company 旁边的复选框,那么它应该自动标记 Microsoft 和 Apple 旁边的复选框已选中,同样如果我选择 Country,它应该检查选项 USA 和 UK。并且还应该有一个全选选项,应该选择所有选项。
是否可以使用 javascript 或 jquery 添加复选框检查属性?
<input type="checkbox" class="entityCheckboxHeader1" id="entityCheckboxHeader" name="Company">Company
<input id="modalEntity" class="entity1" type="checkbox" name="CompanySub">Microsoft
<input id="modalEntity" class="entity2" type="checkbox" name="CompanySub">Apple
<input type="checkbox" class="entityCheckboxHeader2" id="entityCheckboxHeader" name="Country">Country
<input id="modalEntity" class="entity3" type="checkbox" name="CountrySub">USA
<input id="modalEntity" class="entity4" type="checkbox" name="CountrySub">UK