我有一个表有两种类型的行(主行和子行)。主行的行 ID 为“mainRow”+prId(tr 的属性)。子行的行ID是“subRow”+prId(tr的属性)+rowNo。
我要做的是,如果选中了子行的所有复选框,则必须选中主行的复选框。有人可以帮我吗。
<tr id="mainRow2" prId = "2"><td><input type="checkbox" id="main0" ></td></tr>
<tr id="subRow2_1" prId = "2"><td><input type="checkbox" id="subRow2_1_1" ></td></tr>
<tr id="subRow2_2" prId = "2"><td><input type="checkbox" id="subRow2_2_1" ></td></tr>
<tr id="subRow2_3" prId = "2"><td><input type="checkbox" id="subRow2_3_1" ></td></tr>
<tr id="mainRow5" prId = "5"><td><input type="checkbox" id="main1" ></td></tr>
<tr id="subRow5_1" prId = "5"><td><input type="checkbox" id="subRow5_1_1" ></td></tr>
<tr id="subRow5_2" prId = "5"><td><input type="checkbox" id="subRow5_2_1" ></td></tr>
<tr id="subRow5_3" prId = "5"><td><input type="checkbox" id="subRow5_3_1" ></td></tr>
<tr id="subRow5_4" prId = "5"><td><input type="checkbox" id="subRow5_4_1" ></td></tr>