ホバーイベントに関して奇妙な質問があります。要素 (.helpImg) にカーソルを合わせると、ホバー関数内でコードが 4 ~ 6 回実行されます。これをデバッグする方法がわかりません。誰にもアイデアがありますか?? どうもありがとう。
function test(){
console.log('testcall'); //this will only output 1 time
$('.helpImg').hover(function(){
console.log('call'); //when hover the class, this will output multiple times (4~6 times randomly).
//the animation below will play multiple times too
tooltip.css('display', 'block');
tooltip.animate({ opacity: 0 }, 0);
tooltip.animate({'opacity':'1','top':'-=10'},500);
},function (){
$instance = $(this).css({'cursor': 'auto'});
$('#tooltip-' + $instance.attr('id') ).hide(50);
$(".js-tutorialTooltips").hide(50);
})
}