我仍然非常学习 jQuery/javascript,因此非常感谢任何指针和改进。
我想在 fadeOut 事件的回调函数中隐藏一个 div,但这不起作用。我写这篇文章的方式有什么问题吗?
function hide() {
var box = $(this);
box.children("div").children().fadeOut(500, function() {
$(this).parent().hide("slow", "easeOutBounce");
});
};
我正在使用Easing
和HoverIntent
jquery 插件。