我正在尝试使一些 div 淡出然后被删除。
$("article.articles .thumb a").click(function() {
$(this).parent().parent().addClass("selected");
$("article.post").not(".selected").fadeOut(500).delay(1500).remove();
$('#stream').isotope('reLayout');
});
但是 div 会立即被删除而不会褪色。
我究竟做错了什么?