$("table tr").each(function(index,item){
var firstInput = $(this).children("td:eq(0)"); // 第一个checkBox
var secondTd = $(this).children("td:eq(1)")
secondTd.text(); // td值
var inputs = secondTd.nextAll(); // 后面的CheckBox
})