我试图编写一个函数,根据 div 的当前类显示 2 个可能的工具提示中的 1 个,但我似乎无法让它工作。
两个课程都不断显示...
我做了一个小提琴来解释我的问题,因为代码非常庞大......
$('.row').hover(function(){
if(!$(this).hasClass('active')) {
$(this).hover(function(){
//Click to expand
tip = $('.t1');
tip.show();
});
} else {
$(this).hover(function(){
//Click to drag
tip = $('.t2');
tip.show();
});
};
});