jQuery $ .when,deferreds无效

时间:2011-11-30 07:55:11

标签: javascript jquery jquery-deferred

我想要做的是当通过ajax完成两个同时图像加载时,会发生一些动作。为此,我创建了一个自定义延迟,以便在图像加载完成时解析。

<div id="i"></div>
$(document).ready(function() {
    $('#i').hide();
    var imgLoad = loadImgs();
    $.when(imgLoad).then(function() {
        $('#i').show('slow');
    });
});

function loadImgs() {
    var dfd = $.Deferred();

    var matrix = $.getJSON("https://graph.facebook.com/thematrixmovie");
    var pulp = $.getJSON("https://graph.facebook.com/pulpfiction");

    $.when(matrix, pulp).then(function(m, p) {
        mImg = '<img src=' + m[0].picture + '>';
        pImg = '<img src=' + p[0].picture + '>';
        $('#i').show().append(mImg + pImg);
        dfd.resolve;
    });
    return dfd.promise();
}

您可以试试on JSFiddle

我使用了Eric Hynds post包括working example作为参考,但仍然没有让它工作。有什么想法吗?

1 个答案:

答案 0 :(得分:3)

您正确使用$.when,但是您尝试像这样调用resolve方法:

dfd.resolve;

与其他一些语言不同,JavaScript不允许您省略方法调用中的括号。您只需添加它们,您的代码就能正常工作!

dfd.resolve();