我将如何从中删除淡入/淡出并进行表演?例如,我只想在没有任何效果的情况下直接将 ajax 内容拉入...或将噱头放入 div...#mc_calendar。
我的代码:
function buildCal (responseHTML){
// where are we going to put our AJAX calendar?
var target = jQuery('#mc_calendar');
//how fast do we want it to fade out?
target.fadeOut(100, function(){
target.empty();
target.html(responseHTML)
// how fast do we want it to fade in?
target.fadeIn(50);
initMonthLinks(target)
});
}