小编典典

jQuery prepend + fadeIn

ajax

我有以下代码:

$.ajax({
        url : url,
        data : {ids : JSON.stringify(jsonids), hotel_id: hotel_id},
        success : function(response)
        {
            $('#be-images ul').prepend(response).fadeIn('slow');
        },
        dataType: 'html'
    });

但是“淡入”功能不起作用…我希望内容被预先放置并淡入“ …我该怎么做?

提前致谢!


阅读 252

收藏
2020-07-26

共1个答案

小编典典

假设response是HTML,请尝试以下操作:

$(response).hide().prependTo("#be-images ul").fadeIn("slow");

当您这样做时:

$('#be-images ul').prepend(response).fadeIn('slow');

您真正淡入的东西是初始选择器(位于最前面的列表)的结果,该选择器已经可见。

2020-07-26