JS mouseover/mouseout 闪烁但不停留
这是我遇到问题的一些代码:
$(".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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当指针移入子元素时,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.