jquery获取最近的父级

发布于 2024-12-16 16:16:27 字数 631 浏览 0 评论 0原文

可能的重复:
jQuery 中最近的祖先节点

html:

<div class="post">
    <h2><a href="#" title="">Pellentesque</a></h2>
    <p><a href="#" title="" class="more">More</a></p>
</div>

悬停时的jQuery

$('.more').bind("hover", function(){
    $(this).parent('.post').hide() ;                      
});

(.more) 我想隐藏帖子,但没有任何作用 如果我使用parents(),它会删除页面上的所有.posts

任何帮助表示感谢

Possible Duplicate:
nearest ancestor node in jQuery

html:

<div class="post">
    <h2><a href="#" title="">Pellentesque</a></h2>
    <p><a href="#" title="" class="more">More</a></p>
</div>

jQuery

$('.more').bind("hover", function(){
    $(this).parent('.post').hide() ;                      
});

on hover (.more) i want to hide the post, but it does nothing
if i use parents() instead it deletes ALL the .posts on the page

any help appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

歌枕肩 2024-12-23 16:16:27

尝试

$('.more').bind('hover',function()
{
    $(this).closest('.post').hide();
});

这里是单个类的工作演示。
这里是具有多个类的演示。

Try

$('.more').bind('hover',function()
{
    $(this).closest('.post').hide();
});

here is the working demo with single class.
here is the demo with multiple classes.

迷乱花海 2024-12-23 16:16:27

使用 jQuery.closest : http://api.jquery.com/closest/

Use jQuery.closest : http://api.jquery.com/closest/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文