jQuery - 如何使用选择器在表中查找特定单元格?

时间:2014-09-20 00:06:30

标签: jquery html-table jquery-selectors row col

鉴于每个单元格都有row,col属性。 我尝试过像

这样的东西
$(#mytable tr td row=1 col=1)

但它不起作用

1 个答案:

答案 0 :(得分:1)

您可以使用first-childnth-child。例如:

$("#mytable tr:first-child td:first-child")

$("#mytable tr:nth-child(1) td:nth-child(1)")