gpt4 book ai didi

javascript - JS setTimeout 延迟后获取事件

转载 作者:行者123 更新时间:2023-11-28 06:10:47 24 4
gpt4 key购买 nike

如果用户将鼠标悬停在元素上 1.5 秒,我想翻译值。我写了一个小 jQuery 函数,但我不知道如何验证用户是否在 1.5 秒后位于该元素上。

$(document).on('mouseover', '.search-translate', function(e) {
setTimeout(function() { translate(e, this); }, 1500);
});

function translate(pEvent, pThis)
{
if(pEvent.currentTarget == ???.currentTarget)
{
$.ajax(.....);
}
}

有人有想法吗?

最佳答案

使用这段代码......

$(document).on('mouseover', '.search-translate', function(e) {
var obj=this;
setTimeout(function() { translate(e, obj); }, 1500);
});

function translate(pEvent, pThis)
{
alert(pEvent+" : "+pThis);
}

关于javascript - JS setTimeout 延迟后获取事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36420485/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com