0

我有一个像这样的表格: -

<form name="frmChkForm" id="frmChkForm">
        <input type="checkbox" name="modules[1]" onclick="checkgroup(this)" value="1">Module 1<br>
        &nbsp;&nbsp;&nbsp;<input type="checkbox" name="units[1][1]">Unit 1
        &nbsp;&nbsp;&nbsp;<input type="checkbox" name="units[1][2]">Unit 2
        &nbsp;&nbsp;&nbsp;<input type="checkbox" name="units[1][3]">Unit 3<br>
        <input type="checkbox" name="modules[2]" onclick="checkgroup(this)" value="2">Module 2<br>
        &nbsp;&nbsp;&nbsp;<input type="checkbox" name="units[2][1]">Unit 4
        &nbsp;&nbsp;&nbsp;<input type="checkbox" name="units[2][2]">Unit 5
        &nbsp;&nbsp;&nbsp;<input type="checkbox" name="units[2][3]">Unit 6<br>
        <input type="checkbox" name="modules[3]" onclick="checkgroup(this)" value="3">Module 3<br>
        &nbsp;&nbsp;&nbsp;<input type="checkbox" name="units[3][1]">Unit 7
        &nbsp;&nbsp;&nbsp;<input type="checkbox" name="units[3][2]">Unit 8
        &nbsp;&nbsp;&nbsp;<input type="checkbox" name="units[3][3]">Unit 9
</form>

我想选中/取消选中每个模块(主复选框)下包含的所有子复选框。

例如,如果我选中“模块 1”,则只应选中单元 1,2 和 3,而在取消选中“模块 1”时,应取消选中这些单元。其他模块也应该有同样的行为。

我正在寻找一个 Javascript 函数来执行此操作。

4

1 回答 1

4

尝试这个

function checkgroup(obj){            
            var element = [];
            var inputs = document.getElementsByTagName("input");

            for(var i = 0; i < inputs.length; i++)
            {
                if(inputs[i].name.indexOf('units[' + obj.value + ']') == 0)
                {
                element.push(inputs[i]);
                }
            }

            if(obj.checked){
                for(i=0;i<element.length;i++){
                    element[i].checked = true;
                }
            }else{
                for(i=0;i<element.length;i++){
                    element[i].checked = false;
                }
            }
        } 
于 2013-01-21T11:21:13.263 回答