我有两个ajax电话。第一个是异步的,第二个是同步的。如果我在成功函数中放入同步调用,那么会发生什么。是否在同步执行时阻止来自其他地方的任何事件。
$.ajax({
type: "POST",
url: "http://www..../k.php",
data: dataString,
crossDomain: true,
cache: false,
success: function (response) {
$.ajax({
type: "POST",
url: "http://www..../s.php",
data: dataString,
crossDomain: true,
cache: false,
async: false,
success: function (response) {}
});
});