如何使.load()等到一切都满载?

时间:2014-09-24 00:51:46

标签: javascript jquery

function loadContent(href){

    $('#loader').fadeIn(200, function () {

        $('#content').load(href + ' #content > *', function() {

            $('#loader').fadeOut(200);

        });
    });
}

是否可以在$('#loader').fadeOut(200);加载其内容(包括图片)后才运行$('#content').load(href + ' #content > *')

0 个答案:

没有答案