我有以下代码:
$(document).on('hover', '.tic_cont:not(.disabled_ticket)',function () {
$(this).stop().find(".tic_icon").animate({ top: '-=16px' }, 250);
$(this).stop().find(".ti_shd").animate({ opacity: '0.25' }, 250);
}, function () {
$(this).stop().find(".tic_icon").animate({ top: '+=16px' }, 250);
$(this).stop().find(".ti_shd").animate({ opacity: '1' }, 250);
});
当鼠标悬停时div
它必须下降,当鼠标离开时上升。问题在于div
总是下降。哪里有问题?
谢谢。
更新:
在调试器中,我看到第一个函数没有调用。