“onmouseover”出现问题使用原生 Javascript 的事件

发布于 2024-12-29 04:24:38 字数 299 浏览 2 评论 0原文

我正在尝试将 onmouseout 函数添加到以下小部件中的名称。 onmouseover 工作正常,但 onmouseout 几乎在鼠标悬停时立即触发。不知道为什么。

http://jsfiddle.net/A8fmg/

我认为它可能与“冒泡”有关,我一直在尝试阅读有关该主题的内容,但不太理解其中的含义。

任何帮助表示赞赏。

I am attempting to add an onmouseout function to the names in the following widget. The onmouseover works fine but the onmouseout fires almost immediately on rollover. Not sure why.

http://jsfiddle.net/A8fmg/

I think it may have something to do "bubbling" and I have been trying to read about the subject but don't quite understand the implications.

Any help is appreciated.

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

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

发布评论

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

评论(1

傲娇萝莉攻 2025-01-05 04:24:38

Your mouseover handler is destroying the <a> which the handlers are attached to. Adjust your code so that the handlers are attached to a permanent element, either by attaching to a different element or not destroying the one you are using.

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