1. 程式人生 > >獲取所有複選框選中狀態的id

獲取所有複選框選中狀態的id

var id_array = new Array();
         $('input:checkbox[name=item]:checked').each(function(){  
            id_array.push($(this).parents('td').siblings('.planId').attr('id'));//向陣列中新增元素  
        });

此時的id_array 就是所有複選框為選中狀態的id 

 each() 方法規定為每個匹配元素規定執行的函式。