$($('div').children()).animate({opacity:"0"},
function(){
$(this).remove();
$('div').append('new content');
}
);
新内容每次都增加一倍,我将如何让回调函数只触发一次而不是每个孩子?