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