您好我需要一个主复选框来选择所有并在数据库中保存值。
我正在使用以下代码它选择所有复选框但是当我刷新页面时所有复选框都未选中。请告诉我该怎么做。
<script type="text/javascript">
$(function () {
$('input[class="masterCheck"]').change(function () {
$('input[class=catselect]').attr('checked', this.checked);
});
$('input[class="catselect"]').change(function () {
$('input[class="masterCheck"]').prop('checked', $('input[class=catselect]:not(:checked)').length === 0 ? true : false );
});
});
</script>
<input type="checkbox" id="masterCheck" class="masterCheck" name="masterCheck" />
<input type="checkbox" name="chkmainitem<?php echo $allformField->id.$usertype->id;?>" id="chkmainitem<?php echo $allformField->id.$usertype->id;?>" <?php echo $checked; ?> onClick="ChangeMenuStatus('<?php echo $allformField->id?>','<?php echo $usertype->id; ?>','chkmainitem<?php echo $allformField->id.$usertype->id; ?>', '<?php echo $allformField->form_id;?>');" class="catselect" />