怎么在table中用JS或者JQ获取选中的复选框中的那一行的某个元素的值?

2024-11-20 07:18:26
推荐回答(1个)
回答1:

JQ:
$("tr").each(function(i,e){
if($("td input:checkbox",$(e)).prop("checked")){
console.log($("td:eq(1)",$(e)).text());
}
});