2014-09-20 76 views

回答

1

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

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

$("#mytable tr:nth-child(1) td:nth-child(1)") 
相關問題