gpt4 book ai didi

javascript - jQuery 父级中的每个字段

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

我正在尝试构建一个具有以下 html 结构的通用清除字段按钮:

<td colspan="2">
<input type="text" name="unpublish_date" id="unpublish_date" class="calendar" />
<img class="clear_date" src="ico_delete.gif" title="Reset date field"></span>
<input type="hidden" name="_unpublish_date" id="_unpublish_date" />
</td>

所以我认为执行该功能的正确方法是在 .clear_date 的父级内部处理输入

我想知道的是如何选择$(this).parent之后的每个输入

$('.clear_date').click(function(){
$(this).parent().each() ... ?
});

最佳答案

只需将 .siblings 与过滤器一起使用即可:

$(this).siblings('input').each()...;

关于javascript - jQuery 父级中的每个字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11469619/

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