0
我已經創建了一個回調函數來隱藏.calorie表格div然後淡入淡出一個項目添加到我的購物籃後,但是,只有隱藏部分工作。淡入似乎完全被忽略。fadeIn無法工作後,AJAX .load調用
有人可以提醒嗎?
這裏是代碼:
$.ajax({
type: "POST",
url: "../ajax/add-ingredient-to-recipe.php?"+dataString,
dataType: "html",
data: dataString,
success: function (msg) {
frames.top.$.fancybox.close(true);
frames.top.$('.calorie-table').load('./views/nutritional-data.tmp.php', function(){
$(this).hide();
$(this).fadeIn("slow");
});
}
});
'this'不是你認爲它在成功處理程序的範圍內。 – Philipp