2014-01-21 171 views

回答

2

你需要使用回調函數,當操作完成後他們alled:

$(".content_here").fadeOut("slow", function(){ 
    $(this).load("each_article_content.php","id="+id, function(){ 
     $(this).fadeIn("slow") 
    }) 
}) 
+0

感謝它的作品,因爲我想這樣做 – Kazem

+0

我像@ Karl-André一樣評論相同的內容 – CaptainKnee