gpt4 book ai didi

jQuery 在最接近的元素之后选择元素

转载 作者:行者123 更新时间:2023-12-01 08:02:13 24 4
gpt4 key购买 nike

我有在表中呈现选择元素的 SharePoint 代码,并且我希望能够选择 <tr>但是,当我尝试使用时,s 在 select 元素下方:

$("option").eq(1).closest("tr")... ,它选择 select 元素所在的行。我希望能够选择 select 元素所在的行。

生成的代码如下所示:

<table>
<tr>
<select>
<option>...</option>
<option>...</option>
<option>...</option>
</select>
</tr>
<tr> <-- i want to select this row
<input>...</input>
</tr>
<tr>
<input>...</input>
</tr>
</table>

由于它是生成的代码,所以我不能使用类或 ID 等。

谢谢!

最佳答案

使用next() :

$("option").closest("tr").next('tr');

http://jsfiddle.net/VREFL/

关于jQuery 在最接近的元素之后选择元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19036077/

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