在 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");
我怎样才能使这个同步?