jquery fadeOut回调函数不起作用

时间:2012-03-27 07:46:34

标签: jquery

我在Jquery文档中发现fadeOut()接受回调函数但在我的情况下该函数没有执行?看看:

$("div.icon").stop(0,0).fadeOut(250,function(){
    $("div.expanded").stop(0,0).fadeIn(250);    
});

$("div.expanded").stop(0,0).fadeOut(250,function(){
    $("div.icon").stop(0,0).fadeIn(250);
});

你们看到我在这里失踪的东西吗?

非常感谢

2 个答案:

答案 0 :(得分:1)

省略stop(),你不需要那个。它只会过早地停止动画。

答案 1 :(得分:1)

看看这个小提琴:http://jsfiddle.net/jx8hn/

你有没有机会设置不透明度:0 .expanded?因为那时它不会消失。在小提琴我设置display:none似乎有用。