最佳答案
我希望延迟 jquery 中的悬停事件。当用户将鼠标悬停在链接或标签上时,我正在读取文件。我不希望这个事件立即发生,以防用户只是在屏幕上移动鼠标。有什么办法可以延迟发射吗?
谢谢你。
示例代码:
$(function() {
$('#container a').hover(function() {
$('<div id="fileinfo" />').load('ReadTextFileX.aspx',
{filename:'file.txt'},
function() {
$(this).appendTo('#info');
}
);
},
function() { $('#info').remove(); }
});
});
更新: < em > (1/14/09) 在添加了 HoverInent 插件之后,上面的代码被更改为下面的代码来实现它。很容易实现。
$(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)
}