我有幾個問題得到一個簡單的JQuery函數工作,淡出元素,替換內的圖像,並再次消失。FadeOut,替換HTML和淡入淡出
我的功能看起來是這樣的:
function nextPage() {
$("#leftPage").fadeOut("slow", function() {
$("#leftPage").html="<img src='page4.jpg'>";
$("#leftPage").fadeIn("slow");
});
$("#rightPage").fadeOut("slow", function() {
$("#rightPage").html="<img src='page5.jpg'>";
$("#rightPage").fadeIn("slow");
});
}
的淡入/淡出部分工作正常,但HTML不被新影像取代。你能看到這個問題嗎?
完美,謝謝。 – TheCarver 2011-12-21 20:21:29