我正在尝试为复选框实现切换,这里当我选中/取消选中时,所有子复选框都应该被取消选中/取消选中,我试图在下面的递归树中添加的这个功能是树 html 片段的一部分
<strong id="img_18" class="cat_minus" onclick="getchildcategories();"></strong>
<input id="checkbox_18" type="checkbox" onclick="getchildcategories();" value="">
Apparel
<ul>
<li>
<strong class="space_filler"></strong>
<input id="checkbox_4" type="checkbox" name="product_filter[ProductId][]" onclick="getchildcategories();">
Shirts
</li>
<li id="category_5">
<strong id="img_5" class="cat_plus" onclick="getchildcategories();"></strong>
<input id="checkbox_5" type="checkbox" name="product_filter[ProductId][]" onclick="getchildcategories();">
Shoes
</li>
<li>
<strong class="space_filler"></strong>
<input id="checkbox_19" type="checkbox" name="product_filter[ProductId][]" onclick="getchildcategories();">
Hoodies
</li>
</ul>
在上面的 html 中,我正在尝试当我检查 id checkbox_18 的 chechbox 时,所有子复选框都应该被选中/取消选中(切换)