jquery获取最近的父级
可能的重复:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
这里是单个类的工作演示。
这里是具有多个类的演示。
Try
here is the working demo with single class.
here is the demo with multiple classes.
使用 jQuery.closest : http://api.jquery.com/closest/
Use jQuery.closest : http://api.jquery.com/closest/