如何用“Jquery”获取“Table指定行中指定列”的数值?

2024-12-14 08:06:41
推荐回答(1个)
回答1:

next 是取同辈元素,不是去子元素的
alert($("tr:nth-child(3) td:nth-child(5)").html());

alert($("tr:eq(2) td:eq(4)").html());

alert($("tr:eq(2)").children().eq(4).html());
以上三个都能取到第三行第五列