jQuery Hover Flicker

我有一个jQuery和悬停事件的问题.

问题是尽管没有离开div,鼠标事件处理程序仍在触发.
导致div闪烁.

这是一个例子:http://jsfiddle.net/Fxy9P/

如果你将鼠标缓慢移动到div上,它会反复激发效果,尽管不会离开div.

我究竟做错了什么?

解决方法

只要元素完全不可见,mouseleave事件就会触发.尝试

$(this).fadeto('slow',0.5);

为了比较.

编辑:

这应该做你想要的:

$(document).ready(function() {

  $('#strip').mouseenter(function() {
    $(this).fadeto('fast',0.0);
  });
  $('#strip').mouseleave(function() {
    $(this).fadeto('fast',1);
  });

});

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: <span id=&quot...
jQuery 添加水印 <script src="../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...