gpt4 book ai didi

jquery - 定位 parent 的第一个 child

转载 作者:行者123 更新时间:2023-12-01 06:22:32 26 4
gpt4 key购买 nike

我的 html 代码如下所示:

...more rows
<tr class="highlightRow" id="tr0" style="display: table-row;">
<td>0. TIC&nbsp;</td>
<td>123456&nbsp;</td>
<td>
<input type="text" value="12345" id="txt0" name="txtTicRequired0" class="tic">
</td>
<td>
<input type="checkbox" onclick="checkIfChecked(0);" checked="" id="ck0">
</td>
</tr>
...more rows

我的起点是第三个 td 元素处输入字段的 id,我想定位 tr 的第一个 td .

要转到 tr 我使用: $('#txt0').parent().parent(); 但是我如何从该父级转到使用 first-clild 选择器的第一个 td 元素?

最佳答案

用途:

$('#txt0').closest('tr').find('td:first');

关于jquery - 定位 parent 的第一个 child ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19518225/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com