标签: jquery html-table jquery-selectors row col
鉴于每个单元格都有row,col属性。 我尝试过像
$(#mytable tr td row=1 col=1)
但它不起作用
答案 0 :(得分:1)
您可以使用first-child或nth-child。例如:
first-child
nth-child
$("#mytable tr:first-child td:first-child") $("#mytable tr:nth-child(1) td:nth-child(1)")