我希望我的div首先折叠然后从DOM中删除。我尝试了这个,但不是先折叠再去掉,而是立刻消失
$("#backgroundPopup").effect("fold", {
size: "50%"
}, 1000).remove(); //end of effect()
如果我只是使用
$("#backgroundPopup").effect("fold", {
size: "50%"
}, 1000);
然后折叠但我的div仍然存在于DOM中。我可以两者结合吗?
由于
答案 0 :(得分:0)
您想使用effect
回调remove
元素。
$("#backgroundPopup").effect("fold", {
size: "50%"
}, 1000, function(){
$(this).remove(); // this will run after the effect is finished
});