我有一个使用CHtml::checkBoxList的复选框列表,我需要一个带有“全选”的复选框,当它被选中时可以选择所有的复选框。但是我不知道怎么做。
CHtml::checkBoxList
rqdpfwrv1#
你可以
<?php echo CHtml::checkBox('select_all',false, array('onclick' => "js:if($(this).is(':checked')) {$('.example').attr('checked','checked');}else{$('.example').removeAttr('checked');}")) ?> <?php echo CHtml::activeCheckBoxList($model, 'items',array('example1','example2','example3'), array('class'=>'example')) ?>
1条答案
按热度按时间rqdpfwrv1#
你可以