JS mouseover/mouseout 闪烁但不停留

发布于 2024-11-23 20:20:52 字数 376 浏览 2 评论 0原文

这是我遇到问题的一些代码:

$(".setEtiquette").mouseover(function(){
    var rightFrame = $(this).attr("name");
    $('#'+rightFrame).fadeIn();
}).mouseout(function(){
    var rightFrame = $(this).attr("name");
    $('#'+rightFrame).fadeOut();
});

当在 setEtiquette 上时,rightFrame 正在闪烁,但这不是我们想要的,我们希望它保留并在移动到另一个礼仪时离开...

您有什么可以帮助我的吗?

谢谢!

Here's a little code I have problem with:

$(".setEtiquette").mouseover(function(){
    var rightFrame = $(this).attr("name");
    $('#'+rightFrame).fadeIn();
}).mouseout(function(){
    var rightFrame = $(this).attr("name");
    $('#'+rightFrame).fadeOut();
});

When on the setEtiquette, the rightFrame is blinking but that's not what we want it here, we want it stay and leave when moving to another etiquette...

Do you have anything that would help me?

Thanks!

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

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

发布评论

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

评论(1

爺獨霸怡葒院 2024-11-30 20:20:52

当指针移入子元素时,mouseover() 也会触发,而 mouseenter() 仅当指针移入绑定元素时触发。
如果闪烁是由于您绑定到的元素的现有子元素导致的,您可能需要尝试 mouseenter/mouseleave 而不是 mouseover/mouseout。

mouseover() fires when the pointer moves into the children elements as well, while mouseenter() fires only when the pointer moves into the bound element.
You may want to try mouseenter/mouseleave instead of mouseover/mouseout, if the blinking is due to existing children of the elements you are binding to.

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