-3

我将如何从中删除淡入/淡出并进行表演?例如,我只想在没有任何效果的情况下直接将 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)
});
}
4

2 回答 2

1

如果您是单线解决方案的粉丝:

initMonthLinks(target.hide().html(responseHTML).show());

但是,隐藏和显示在这里没有任何意义。如果target始终可见,请仅使用:

initMonthLinks(target.html(responseHTML));
于 2012-05-16T15:29:21.103 回答
0
function buildCal (responseHTML){
    // where are we going to put our AJAX calendar?
    var target = jQuery('#mc_calendar');
    target.html(responseHTML);
    initMonthLinks(target);
});
于 2012-05-16T15:28:08.623 回答