gpt4 book ai didi

jQuery 选择父级

转载 作者:行者123 更新时间:2023-12-01 02:07:55 25 4
gpt4 key购买 nike

我有这个html;

<div class="AttachmentContainer">
<div class="display-label">Attachment name</div>
<div class="display-field">
<input type="checkbox" id="chkAttachment" class="Attachment" />
<%= thisAttachment.filename%>
</div>
</div>

点击复选框后,我得到了这个 jQuery 代码;

$(this).parent(".AttachmentContainer").hide();

但是这不起作用。如果我警告出 html() 而不是 hide() 它是空的。

如果我将其更改为;

$(this).parent().parent().hide();

效果很好。我认为在父级上放置一个选择器会继续向上移动,直到找到具有该类名的父级。

我不想使用 parent().parent() 那还有什么办法呢?

编辑

.parents(".... 也不起作用。

最佳答案

您可以使用closest方法来实现此目的:

$(this).closest('.AttachmentContainer').hide();

关于jQuery 选择父级,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7269114/

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