私は次のようなテーブル構造を持っています:
<table id = "cust-id">
<tr>
<td> 1</td>
<td id = "specific_id_re"><a href = "#">link tag</a></td>
</tr>
<tr>
<td> 2 </td>
<td id = "specific_id"> <a href = "#">link tag</a></td>
</tr>
</table>
jquery を使用して、id とリンク タグを持つテーブル行の各列にアクセスしようとしていますが、不足しています。私が行ってきた最高のことは次のとおりです。
$('#cust-id').children().children().children() ; // to get access to the td elements ?
何を読むべきか、またはこれにどのように取り組むべきかについての提案はありますか?
ありがとうパリジャット・カリア