2

在 jquery 网站上,他们告诉你你可以这样做:

jQuery.ajax({
     type: "POST",
     url:    'http://example.com',
     success: function(result) {
              },
     async:   false
});     

这将使这个调用同步

但是如果我使用 jquery 格式发布:

     $.post( '../php/x.php', {},
     function( data ){  // a function to deal with the returned information
        }

    }, "json");

我怎样才能使这个同步?

4

1 回答 1

9

无论如何,您可能不应该使其同步,但您不能. 一个近似值是

$.ajaxSetup({async: false});
$.post();
于 2013-03-01T05:32:18.343 回答