1

我有一个父子类别复选框,其中子有子子。仅在单击父类别时才需要显示子类别,并且当取消选中父类别时,所有子类别都需要隐藏。

一切都很好,但是什么时候,假设孩子和子孩子被检查了。现在,当未选中超级父级时,它会隐藏保持选中子子级的复选框,该复选框应未选中。

这是我的代码。

$(function () {
$(':checkbox').change(function () {
$("input[type='checkbox']:checked").each(function () {
    var inner_id = $(this).attr('id');
    if (inner_id.search("parent") > -1) {
    //   $("input."+inner_id).attr('hidden','false')
    $("."+inner_id).removeAttr("hidden");
    }
});
});
});

$(function () {
    $(':checkbox').click(function () {
    var is_chk = $(this).attr('checked');
    var its_id = $(this).attr('id');
    if (is_chk != 'checked') {
        $("."+its_id).attr('hidden', 'true');
    }
});
});

这个的html代码是。

 <input type="checkbox" id="parent1" />parent<br/>
 &nbsp;&nbsp;<input type="checkbox" class="parent1" disabled="true" />child1<br/>
 &nbsp;&nbsp;<input type="checkbox" class="parent1" disabled="true"/>child2<br/>
 &nbsp;&nbsp;<input type="checkbox" class="parent1" disabled="true"/>child3<br/>
 <input type="checkbox" id="parent2" />parent<br/>
 &nbsp;&nbsp;<input type="checkbox"  class="parent2" disabled="true"/>child1<br/>
 &nbsp;&nbsp;<input type="checkbox" class="parent2" 
 id="parent3" disabled="true"/>child2-parent<br/>
 &nbsp;&nbsp;&nbsp;&nbsp;<input type="checkbox"
 class="parent3" disabled="true"/>child1<br/>
 &nbsp;&nbsp;&nbsp;&nbsp;<input type="checkbox"
 class="parent3"  disabled="true"/>child2<br/>
 &nbsp;&nbsp;&nbsp;&nbsp;<input type="checkbox"
 class="parent3"  disabled="true"/>child3<br/>
 &nbsp;&nbsp;&nbsp;&nbsp;<input type="checkbox"
 class="parent3"  disabled="true"/>child4<br/>
 &nbsp;&nbsp;&nbsp;&nbsp;<input type="checkbox" 
 class="parent3" id="parent4"  disabled="true"/>child5-parent<br/>
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="checkbox" 
 class="parent4"  disabled="true"/>child1<br/>
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="checkbox" 
 class="parent4"  disabled="true"/>child2<br/>

或者你可以在这里试试。

http://jsfiddle.net/DNDnT/4/

只需选中所有复选框并单击父级,您就会明白我的问题。谢谢。

我在项目中尝试过的实际代码是。

$(function() {
$(':checkbox').change(function() {

$("input[type='checkbox']:checked").each(function() { 
  //var inner_id = $(this).attr('id');
    var inner_id = $(this).attr('value');
  var parId1="input."+inner_id;
  var parId2="."+inner_id;

$(parId1).removeAttr("disabled");
  $(parId2).removeAttr("hidden");

});
});
}); 

$(function() {
$(':checkbox').click(function() {
var is_chk = $(this).attr('checked');
   var its_id = $(this).attr('value'); 
   //var parId2="#"+its_id;
    var parId1="input."+its_id;
    var parId2="."+its_id;


    if(is_chk!='checked') {
        $(parId1).removeAttr("checked");
        $(parId1).attr('disabled','true');
        $(parId2).attr('hidden','true');

    }
});
});
4

1 回答 1

0

我不认为你写的作品,只是看到你的小提琴。但如果这就是你想要的,那么你可以尝试在第二个函数中添加这一行:

$("."+its_id).attr('checked', false);

$("."+its_id).attr('hidden', 'true');
于 2013-01-22T11:26:05.487 回答