1. 多选框遍历

  $("tr").each(function(i){
    ....

    i 为遍历的每一个元素
  });

2. 遍历选中的多选框

$("input[name='id']:checked").each(function(i){
console.log("$(this).checked == true: "+$(this).checked == true);
console.log("i: "+i);
ids += $(this).attr("id") + ",";
})