使用jquery标识表的第二行,第三列

时间:2011-12-17 04:04:31

标签: jquery selector

如何识别表格的第二行,第三列。 我希望这样的事情能够起作用

var mySection = $('table tr:nth-child(2) td:nth-child(3)');

4 个答案:

答案 0 :(得分:2)

我在问题works中发布了选择器。看看jsfiddle。我在该示例中将mySection文本标记为红色。

答案 1 :(得分:0)

如果将第二个参数传递给jQuery(),则会指定上下文。

var my section = $('td:nth-child(3)', 'table tr:nth-child(2)')

虽然,考虑到它,它将创建与最初发布的结果相同的结果:

var my section = $('table tr:nth-child(2) td:nth-child(3)')

答案 2 :(得分:0)

另一种方式,

$('table tr:eq(1) td:eq(2)');

答案 3 :(得分:0)

var mysection = $('#tableId tr:eq(2)td:eq(2)')