jquery鼠标悬停问题

发布于 2024-11-06 06:25:24 字数 274 浏览 0 评论 0原文

我有一个 jquery 脚本,它会在 div 上的鼠标悬停时触发,如下所示:

<div class="myDiv">
    <span class="mySpan">text text text</span>
</div>

问题是,当我将鼠标悬停在文本上时,它的行为就像鼠标悬停一样,但我不希望这样。我可以在上面放置一个不可见的 div 并触发其上的移动,但我想让它尽可能简单。

有什么建议吗...?

I have a jquery-script that triggers on mouseover on a div like this:

<div class="myDiv">
    <span class="mySpan">text text text</span>
</div>

The problem is that it acts like mouseout when i hover over the text and I dont want that. I could put an invisible div over it all and trigger the moseover on that but I would like to keep it as simple as possible.

Any suggestions...?

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

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

发布评论

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

评论(1

﹏半生如梦愿梦如真 2024-11-13 06:25:24

您正在寻找 mouseleave / mouseenter 不是 mouseout/mouseover

mouseleave 在离开父级时触发,而 mouseout 在子级上触发

You are looking for mouseleave / mouseenter not mouseout/mouseover

mouseleave fires when leaving the parent, while mouseout fires on children

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