发布网友 发布时间:2024-10-22 08:55
共1个回答
热心网友 时间:2024-10-23 03:15
$("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
})
热心网友 时间:2024-10-23 03:12
$("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
})