我有以下功能。目的是,当您将鼠标悬停在具有 class 的项目上时.toolTip
,它将data-tooltip
在 3 秒后记录您悬停的元素。但是,如果您的光标离开该项目,它应该取消 setTimeout 并且不显示消息。
“超时设置”和“超时清除”消息按预期触发,但命名函数仍然触发。我究竟做错了什么?
$(document).on("hover",".toolTip", function() {
var toolTip = $(this);
var toolTipMessage
var hoveringNow = toolTip.attr("data-hovering-now");
if(typeof hoveringNow !== typeof undefined && hoveringNow !== false) {
toolTip.removeAttr('data-hovering-now');
clearTimeout(toolTipMessage);
console.log('Timeout cleared');
}
else {
toolTip.attr('data-hovering-now', true);
toolTipMessage = setTimeout(showToolTip, 3000, toolTip.attr("data-tooltip"));
console.log('Timeout set');
}
});
function showToolTip(message) {
console.log(message);
}