在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");
如何使这种同步?