1. 程式人生 > >返回多選的陣列的id

返回多選的陣列的id

 function show(){ 
          var strIds=new Array();
          $("input[name='btSelectItem']").each(function (i,d){ 
            if(d.checked) { 
              strIds.push(d.id); 
            } 
          }) 
         return strIds;
        }