gpt4 book ai didi

javascript - JQuery - 如何找到具有特定类的元素的下一次出现

转载 作者:行者123 更新时间:2023-11-30 16:28:25 25 4
gpt4 key购买 nike

所以我有一个这样的表:

<table id="TblProduits" class="TblProduitsLayout">
<thead>
<tbody>
<tr class="placeholderRow">
<td>
<input class="PrixUnitr" type="number" />
</td>
<tr class="placeholderRow">
<tr class="placeholderRow SousTotal">
<td>
<input class="MontnHT" type="text" disabled="disabled" min="0"/>
</td>
<tr class="placeholderRow">
<tr class="placeholderRow SousTotal">
<td>
<input class="MontnHT" type="text" disabled="disabled" min="0">
</td>
</tbody>
</table>

我想更改类名 MontnHT 包含在类名 SousTotal 的 tr 中的 input 的第一次出现的值 当类名 PrixUnitrinput 的值发生变化时,我创建了一个这样的事件:

$('body').on('change', '.PrixUnitr', function() {       
$(this).closest('tr').nextAll("tr.SousTotal").find("input.MontnHT").val("foo");
});

我的问题是,它还更改了包含在具有相同类名 SousTotalTR 中的其他输入,因为我只想更改第一次出现的情况,我是什么做错了吗?以及如何解决?

最佳答案

使用.first().eq(0) 获取元素的第一次出现

 $(this).closest('tr').nextAll("tr.SousTotal").first().find("input.MontnHT:first").val("foo");

 $(this).closest('tr').nextAll("tr.SousTotal:eq(0)").find("input.MontnHT:eq(0)").val("foo");

关于javascript - JQuery - 如何找到具有特定类的元素的下一次出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33757808/

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