获取null复选框数组

时间:2016-11-18 06:52:04

标签: php jquery html

我正在尝试通过选择全选选项来删除视图页面上的所有行。我的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);
         });
       }

     }

0 个答案:

没有答案