多个异步ajax请求指定顺序执行
1、比如2个ajax请求,把第二个ajax请求放在第一个ajax请求success方法里面。
2、ajax请求时添加 async: false,//使用同步的方式,true为异步方式。结果是只有等服务器返回信息以后才会继续执行后面的代码。默认为true。
3、
ajax6 = $.ajax( { url: "/Home2/SelectyjLoginuser", dataType: "json", type: "post", success: function (paraResponse) { } }); ajax7 = $.ajax( { url: "/Home2/Selectyjzh", dataType: "json", type: "post", success: function (paraResponse) { } }); //确保(ajax6, ajax7两个请求完毕时执行 $.when(ajax6, ajax7).done(function () { //所做操作 }); }