jQuery:如何全局获取整个文档正文中我悬停的最里面的 dom 元素?
我想检测鼠标在整个文档主体上的移动,并能够准确地判断我将鼠标悬停在 DOM 的哪一部分上。我所说的“哪一部分”是指鼠标当前位于最里面的 DOM 元素。
我可以将悬停绑定到整个文档正文,但是 $(this) 会给我 $(body),而不是最里面的元素。或者我可以递归地迭代整个 DOM 并将悬停绑定到每个元素,但这在我看来是一个严重的矫枉过正。
有没有一种简单的方法可以实现这一目标?
I'd like to detect mouse movements over the whole document body, and be able to tell exactly which part of the DOM I'm hovering over. By "Which part" I mean the innermost DOM element that the mouse is currently over.
I could bind a hover to the whole document body, but then the $(this) would give me the $(body), not the innermost element. Or I could iterate over the whole DOM recursively and bind a hover to each elements, but that would be a serious overkill IMO.
Is there an easy way to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
jQuery 的 event.target 应该可以解决问题:
jQuery's event.target should do the trick:
根据 Jasie 的建议,我最终使用了以下代码:
Based on Jasie's suggestion, I ended up using the following code:
:) 考虑所有元素,例如:
文本区域仅向您显示结果。
:) think of all the elements, Like:
The textarea is to show you the result only.