我有一個功能,我嘗試寫,顯示懸停工具提示,並淡出出來的鼠標離開:關於mouseover和mouseleave重複功能?
$('.tt').mouseover(function(e) {
var tip = $(this).find('.tooltip');
//Set the X and Y axis of the tooltip
$('.tooltip').css('top', 0);
$('.tooltip').css('right', -200);
tip.fadeIn('500');
}).mouseout(function(e) {
var tip = $(this).find('.tooltip');
tip.fadeOut('500');
});
如果用戶變得不穩定鼠標懸停和多次提示閃爍,本質上。有沒有辦法阻止這種情況?
10分鐘的答案...我們是一羣禿鷹。 – 2013-02-14 14:44:29