Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
各セルに行、列属性があるとします。私は次のようなものを試しました
$(#mytable tr td row=1 col=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)")