我有一個表格,如: -的Javascript:檢查取消選中複選框分組
<form name="frmChkForm" id="frmChkForm">
<input type="checkbox" name="modules[1]" onclick="checkgroup(this)" value="1">Module 1<br>
<input type="checkbox" name="units[1][1]">Unit 1
<input type="checkbox" name="units[1][2]">Unit 2
<input type="checkbox" name="units[1][3]">Unit 3<br>
<input type="checkbox" name="modules[2]" onclick="checkgroup(this)" value="2">Module 2<br>
<input type="checkbox" name="units[2][1]">Unit 4
<input type="checkbox" name="units[2][2]">Unit 5
<input type="checkbox" name="units[2][3]">Unit 6<br>
<input type="checkbox" name="modules[3]" onclick="checkgroup(this)" value="3">Module 3<br>
<input type="checkbox" name="units[3][1]">Unit 7
<input type="checkbox" name="units[3][2]">Unit 8
<input type="checkbox" name="units[3][3]">Unit 9
</form>
我要檢查/取消所有的每個模塊(主要複選框)下所包含的子複選框。
例如,如果我檢查「模塊1」,那麼只應檢查單元1,2和3,並取消選中「模塊1」,應該取消選中這些單元。同樣的事情應該適用於其他模塊。
我在尋找一個Javascript函數來執行此操作。
3 ... 2 ... 1你嘗試過什麼? ;) –
我看着谷歌,但沒有找到。 – sureyn