使用 JQuery 选择最小的悬停元素
我想问题就在标题中:我只想在用户单击时将样式仅应用于最小的悬停元素。我该如何选择这个元素?
谢谢。
I guess the question is in the title: I want to apply a style only to the littlest hovered element when the user clicks. How do do I choose this very element ?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要在 div 上放置样式而不影响父级,可以使用
停止气泡event.stopPropagation()
,如下所示:您可以在此处查看此操作的演示< /a>
对于
hover
情况,您实际上需要mouseover
和mouseout
而不是mouseenter
和mouseleave
(.hover()
绑定到)在本例中,如下所示:您可以在此处查看此操作
To put a style on the div and not have the parent affected, you can stop the bubble with
event.stopPropagation()
, like this:You can see a demo of this working here
For the
hover
case, you actually would wantmouseover
andmouseout
instead ofmouseenter
andmouseleave
(which.hover()
binds to) in this case, like this:You can see this in action here