我正在尝试通过选择全选选项来删除视图页面上的所有行。我的select all的jQuery代码工作正常但我在创建复选框数组时得到了null数组。
<?php
if($total>0){
$i=1;
while($line_data=mysql_fetch_assoc($getResult)){
?>
<tr title="<?=$row_title?>">
<td>
<input type="checkbox" name="checkbox_id[]" value="<?=$line_data['id']?>" style="width:15px;">
<?=$i.".";?>
</td>
jQuery代码
function check_all_list(thisid){
if($('#'+thisid).parent('span').attr('class')!='checked'){
$('input[name^="checkbox_id"]').each(function(){
$(this).parent('span').addClass('checked');
$(this).attr('checked',true);
});
}else{
$('input[name^="checkbox_id"]').each(function(){
$(this).parent('span').removeClass('checked');
$(this).attr('checked',false);
});
}
}