我想要做一些效果,例如fadeIn
頁面,一旦我得到ajax響應。 我想這一點,jquery ajax成功淡入淡出效果
$.ajax({
type: "post",
url: actionLink,
cache: false,
data: ....someData....,
success: function(data) {
$(".response").fadeOut(100);
$(".response").html(data);
$(".response").fadeIn(500);
}
});
這是工作,但數據顯示第一和用500ms的淡入效果獲取數據的閃光燈,但我需要直接與淡入淡出效果得到加載的數據。
我甚至嘗試過Fade out a div with content A, and Fade In the same div with content B,但我仍然遇到同樣的問題。
我也試過:
$(".response").fadeOut(100).hide();
$(".response").show().html(data).fadeIn(500);
還是一樣。我該如何解決?
嗨,謝謝你的回覆。試過了。還是一樣。第一個數據顯示並開始fadeIn – Max