没有错误,但我想知道处理这种冲突或做对的最佳技巧。如何停止这种循环效果。
这是一个基本示例:http: //jsfiddle.net/aC5bV/
$('a').on({
mouseenter:function(){
$tooltip=$('#tooltip');
$tooltip.animate({
top:20,
left:20
},300);
},
mouseleave:function(){
$tooltip=$('#tooltip');
$tooltip.animate({
top:50,
left:50
},300);
}
});