2

我需要一个超链接来执行 Ajax 调用,完成后,对超链接执行标准操作。

<a href="afterwards.html" target="_blank" onclick="return CallFirst();">Link</a>

javascript函数调用$.ajax(),等待成功或失败,然后返回true。

function CallFirst()
{
    $deferred = $.ajax({
                    type: "POST",
                    url: url,
                    data: data
                });

    // **todo** WAIT until the Ajax call has responded.

    // Return true, which makes the <a> tag do it's standard action
    return true;
}

代码必须等待$.ajax成功,然后从CallFirst().

$deferred.when()立即终止。如何让它等待?

4

3 回答 3

9

只需将async属性设置为false

$deferred = $.ajax({
                type: "POST",
                url: url,
                data: data,
                async: false
            });

但是使用回调确实是一个更好的主意。

于 2013-10-07T10:45:02.923 回答
1

您可以将 async 设置为 false 但更好的做法是使用回调:

.done(function( success) {
    if (success) {
      doSomeThingElseNow();
    }
  });
于 2013-10-07T10:50:29.133 回答
0

使用来自 jquery 的内置 ajax 回调。

$.ajax({
    url: '/path/to/file',
    type: 'default GET (Other values: POST)',
    dataType: 'default: Intelligent Guess (Other values: xml, json, script, or html)',
    data: {param1: 'value1'},
})
.done(function() {
    console.log("success");
})
.fail(function() {
    console.log("error");
})
.always(function() {
    console.log("complete");
});
于 2013-10-07T12:16:04.513 回答