当用户在某些列表项上执行鼠标悬停时,我正在使用 Prototype.js 加载 html 元素。仅当鼠标在给定时间后仍位于列表项上方时,我才使用 setTimeout() 加载内容。当用户在同一个列表项上执行 mouseout 时,我想使用 clearTimeout。
clearTimeout() 没有清除我的超时。我很确定这是因为我对 Prototype.js 不熟悉而隐藏了一个常见的变量范围问题
有人可以指出此代码中的缺陷或确定我需要添加什么以使 clearTimeout() 函数正常工作吗?
document.observe( 'dom:loaded', function() {
var timeout;
$$('.nav-primary li.category').each( function( item ) {
item.observe('mouseover', function(event) {
event.stopPropagation();
categoryId = event.currentTarget.id;
getCategoryBlurb(categoryId);
timeout = setTimeout( function() {
showCategoryInfo(categoryData, categoryId);
}, waitTime);
});
item.observe('mouseout', function(event) {
event.stopPropagation();
clearTimeout(timeout);
});
});
});
更新代码
$$('.nav-primary li.category').each( function( item ) {
var timeout = null;
item.observe('mouseover', function(event) {
event.stopPropagation();
categoryId = event.currentTarget.id;
getCategoryBlurb(categoryId);
if( timeout === null ) {
timeout = setTimeout( function() {
showCategoryInfo(categoryData, categoryId);
}, waitTime);
}
console.log(timeout);
});
item.observe('mouseout', function(event) {
if( timeout !== null ) {
console.log(timeout);
clearTimeout(timeout);
timeout = null;
}
});
});