0
如何使用load()
jQuery的功能從淡入淡出從另一頁加載?使用加載()與淡出淡入淡出來替換內容
$(".content_here").fadeOut("slow").load("each_article_content.php","id="+id).fadeIn("slow")
,但它不工作正確
如何使用load()
jQuery的功能從淡入淡出從另一頁加載?使用加載()與淡出淡入淡出來替換內容
$(".content_here").fadeOut("slow").load("each_article_content.php","id="+id).fadeIn("slow")
,但它不工作正確
你需要使用回調函數,當操作完成後他們alled:
$(".content_here").fadeOut("slow", function(){
$(this).load("each_article_content.php","id="+id, function(){
$(this).fadeIn("slow")
})
})
感謝它的作品,因爲我想這樣做 – Kazem
我像@ Karl-André一樣評論相同的內容 – CaptainKnee