我有一个执行多个ajax调用的函数,我必须逐个进行调用
在功能开始时,我禁用按钮添加到购物车,我显示带有动画图像的div(加载gif),然后,我遍历所有的ajax调用。
function add_cart_tour()
{
// this code is executed after my ajax call ...
$("#btn_ajouter").prop('disabled' , true);
$("#please_wait").show();
// loop in all call
// when all call are done, I redirect the user to the cart page
}
为什么这个异步错误的调用在我打电话之前就阻塞了代码?