0
我有一個使用jQuery從頁面加載新內容的歷史API腳本。我怎麼能淡化名爲#load
的新加載的div?Fadein AJAX加載到頁面
$.ajax({
url: url,
type: 'GET',
dataType: "html",
success: function (responseData) {
$("#main").html($("#load", responseData).html());
if (url =='Home'){
$.get("phpscripts/getFeed.php",function(result){
$("#newsFeed").html(result);
});
}
},
error: function (jqXHR, textStatus, errorThrown) {
alert(jqXHR.status + " : " + errorThrown);
}
});
您可以嘗試使用Jquery.fadeIn()。 http://api.jquery.com/fadeIn/ – sinanakyazici