94

我想延迟 jquery 中的悬停事件。当用户将鼠标悬停在链接或标签上时,我正在读取文件。如果用户只是在屏幕上移动鼠标,我不希望此事件立即发生。有没有办法延迟事件触发?

谢谢你。

示例代码:

$(function() {
    $('#container a').hover(function() {
        $('<div id="fileinfo" />').load('ReadTextFileX.aspx',
            {filename:'file.txt'},
            function() {
                $(this).appendTo('#info');
            }
         );
    },
        function() { $('#info').remove(); }
    });
});

更新: (09 年 1 月 14 日) 添加 HoverIntent 插件后,将上述代码更改为以下代码以实现它。实现起来非常简单。

$(function() {
    hiConfig = {
        sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)
        interval: 200, // number = milliseconds for onMouseOver polling interval
        timeout: 200, // number = milliseconds delay before onMouseOut
        over: function() {
            $('<div id="fileinfo" />').load('ReadTextFileX.aspx', {filename:'file.txt'},
                function() {
                   $(this).appendTo('#info');
                }
             );
        }, // function = onMouseOver callback (REQUIRED)
        out: function() { $('#info').remove();  } // function = onMouseOut callback (REQUIRED)
    }
    $('#container a').hoverIntent(hiConfig)
}
4

6 回答 6

92

使用 jquery 的 hoverIntent 插件:http: //cherne.net/brian/resources/jquery.hoverIntent.html

它绝对适合您所描述的内容,我几乎在每个需要鼠标悬停激活菜单等的项目中都使用过它...

这种方法有一个问题,一些接口没有“悬停”状态,例如。移动浏览器,例如 iphone 上的 safari。您可能隐藏了界面或导航的重要部分,而无法在此类设备上打开它。您可以使用特定于设备的 CSS 来解决这个问题。

于 2009-01-12T15:31:16.167 回答
50

您需要在悬停时检查计时器。如果它不存在(即这是第一次悬停),则创建它。如果它存在(即这不是第一次悬停),杀死它并重新启动它。将计时器有效负载设置为您的代码。

$(function() {
    var timer;

    $('#container a').hover(function() {
        if(timer) {
            clearTimeout(timer);
            timer = null
        }
        timer = setTimeout(function() {
            $('<div id="fileinfo" />').load('ReadTextFileX.aspx',
                {filename:'file.txt'},
                function() {
                    $(this).appendTo('#info');
                }
            );
        }, 500)
    },
    // mouse out
    });
});

我敢打赌 jQuery 有一个函数可以为你完成这一切。

编辑:啊,是的,jQuery 插件来拯救

于 2009-01-12T15:40:28.190 回答
11

完全同意 hoverIntent 是最好的解决方案,但如果你碰巧是一个不幸的草皮,他在一个网站上工作,需要一个漫长而漫长的 jQuery 插件审批流程,这里有一个快速而肮脏的解决方案,对我来说效果很好:

$('li.contracted').hover(function () {
    var expanding = $(this);
    var timer = window.setTimeout(function () {
        expanding.data('timerid', null);

            ... do stuff

    }, 300);
    //store ID of newly created timer in DOM object
    expanding.data('timerid', timer);
}, function () {
    var timerid = $(this).data('timerid');
    if (timerid != null) {
        //mouse out, didn't timeout. Kill previously started timer
        window.clearTimeout(timerid);
    }
});

如果鼠标在 <li> 上停留的时间超过 300 毫秒,这仅用于扩展 <li>。

于 2011-12-08T14:25:42.770 回答
6

您可以在 mouseout 事件上使用带有 clearTimeout() 的 setTimeout() 调用。

于 2009-01-12T15:32:21.077 回答
1

在 2016 年,Crescent Fresh 的解决方案对我来说没有按预期工作,所以我想出了这个:

$(selector).hover(function() {
    hovered = true;
    setTimeout(function() {
        if(hovered) {
            //do stuff
        }
    }, 300); //you can pass references as 3rd, 4th etc. arguments after the delay

}, function() {
    hovered = false;
});
于 2016-04-09T13:32:13.970 回答
-2

我的解决方案很简单。如果用户在 obj 上保持 mouseenter 超过 300 毫秒,则延迟打开菜单:

var sleep = 0;
$('#category li').mouseenter(function() {
    sleep = 1;
    $('#category li').mouseleave(function() {
        sleep = 0;
    });
    var ob = $(this);
    setTimeout(function() {                         
        if(sleep) {
            // [...] Example:
            $('#'+ob.attr('rel')).show();
        }
    }, 300);
});
于 2011-09-02T10:37:23.827 回答