1

我在我的网站上使用 PHP、Smarty 和 jQuery。在一个聪明的模板中,我正在处理几个复选框。以下是我关于复选框的聪明代码片段供您参考。

<table cellpadding="5" cellspacing="0" border="0" id="groups_listing" style="{if $data.show_group=='on'}display:{else}display:none;{/if}">
     <tr>
     {if $all_groups}
     {assign var='i' value=0}
     {foreach from=$all_groups item="group"}
       {if $i%4 == 0}</tr><tr>{/if}
         <td valign="top" align="left" width="200">
           <table cellpadding="5" cellspacing="0" border="0">
             <tr>
               <td>
               <input type="checkbox" name="parent_groups[]" id="{$group.parent_id}" id="{$group.parent_id}" onchange="check_subgroups(this.id, 'class_{$group.parent_id}');" value="{$group.parent_id}" {foreach from=$user_groups item=user_grp} {if $user_grp== $group.parent_id} checked="checked" {/if}{/foreach}>
               <label><strong>{$group.parent_name} </strong></label>
               <input type="hidden" name="main_groups[]" id="main_groups[]" value="{$group.parent_id}">
               </td>
             </tr>                       
             {foreach from=$group.subgroups item=subgroup}
             <tr>
               <td>
               <input type="checkbox" name="groups_{$group.parent_id}[]" class="class_{$group.parent_id}" onchange="uncheck_main_group('{$group.parent_id}'); return false;" value="{$subgroup.group_id}" style="margin-left:20px;" {foreach from=$user_groups item=user_grp} {$user_grp} {if $user_grp==$subgroup.group_id} checked="checked" {/if}{/foreach}> <label>{$subgroup.group_name}</label>
               </td>
             </tr>
             {/foreach}
           </table>  
           {assign var='i' value=$i+1}
         {/foreach}
       {/if}
    </td>
  </tr>
  </table>

javascript函数如下:

function show_groups(check_box_id) 
{
    if ($(check_box_id).is(':checked')) {

        $('#groups_listing').show();

        } else {

        $('#groups_listing').hide();
        }
}

function check_subgroups(parent_id, class_name) { 
        var chk = document.getElementById(parent_id).checked;
        if(chk == true) 
            $('.'+jQuery.trim(class_name)).attr('checked', true);
        else
            $('.'+jQuery.trim(class_name)).attr('checked', false);
    }

第一个名为show_groups()的 JavaScript 函数工作正常,没有问题。我的问题是名为check_subgroups()的第二个函数。它最初在页面加载后也可以正常工作,但后来如果我取消选中并再次检查父复选框,它就不起作用了。此外,当我检查所有子复选框时,预计父子框应自动被选中,反之亦然。这在当前情况下不起作用。你能帮我实现这个功能吗?供您参考,我附上了带有此问题的复选框的屏幕截图。您可以在问题中看到我已检查父课程下的所有子复选框,但父复选框未自动选中。提前致谢。

4

2 回答 2

1

我希望您不介意,但我创建了一个jsFiddle 抽象,以确保所有被检查的子级都将父级切换为已检查,而不是完全修改您的代码以让您了解可能使用的一种方法。

<div class="parentDiv">
    <input type="checkbox" class="parent"/>
    <div class="childGroup">
        <input type="checkbox" class="child"/>
        <input type="checkbox" class="child"/>
        <input type="checkbox" class="child"/>
    </div>
</div>

然后您可以使用此 jQuery 来确保您的父级在子组更改时选择/取消选择。

$('.child').on('change', function () {

    var $parent = $(this).closest('.parentDiv').find('input.parent'),
    $childCheckboxes = $(this).closest('.childGroup').find('.child');

    if ( $childCheckboxes.length === $childCheckboxes.filter(':checked').length ) {
        $parent.prop('checked', true);
    } else {
        $parent.prop('checked', false);
    }

});

在父切换上切换所有子级

$('.parent').on('change', function () {

    var $children = $(this).closest('.parentDiv').find('.child');

    $children.prop('checked', $(this).is(':checked'));

});

根据您的要求,我已尝试将其放入您的 check_subgroups 函数的上下文中:

function check_subgroups(parent_id, class_name) { 

    $parent = $('#' + parent_id);

    $childCheckboxes = $('.' + $.trim(class_name));

    $childCheckboxes.prop('checked', $parent.is(':checked')); 

}

并在选择所有子项时切换父项:

function uncheck_main_group(parent_id) {

    var $parent = $('#' + parent_id);

    var $children = $('.class_' + $.trim(parent_id));

    if ( $children.length === $children.filter(':checked').length ) {
        $parent.prop('checked', true);   
    } else {
        $parent.prop('checked', false);   
    }

}
于 2013-09-04T13:07:07.960 回答
0

代替

$('.'+jQuery.trim(class_name)).attr('checked', false);

采用

$('.'+jQuery.trim(class_name)).removeAttr('checked');

检查属性的值是什么并不重要。如果存在,则选中该复选框。

于 2013-09-04T12:02:41.437 回答