gpt4 book ai didi

jQuery 如何获取最顶层容器ID?

转载 作者:行者123 更新时间:2023-12-01 00:41:47 24 4
gpt4 key购买 nike

在我的页面上,我有许多看起来像这样的 html 控件:

<span id="pic1" class="container">
<span class="inner">
<span class="img"></span>
<span class="strip"></span>
<span class="remove_the_main_container"></span>
</span>
</span>

我想做的就是当用户点击 span 时使用 class="container" 删除(通过使用 jQuery)span > 与 class="remove_the_main_container"。问题是 - 如何获取其中放置了单击的跨度 (class="remove_the_main_container") 的最顶层容器的 ID?

最佳答案

您不需要 ID 即可将其删除。

$('.remove_the_main_container').click(function() {
$(this).parents('.container').remove();
});

关于jQuery 如何获取最顶层容器ID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4219257/

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