当前位置: 首页 > 工具软件 > RWP.JS > 使用案例 >

ajax 在js中请求结束后再进行其他操作

宋成天
2023-12-01
	myajax = $.ajax({
                     type:'POST',
                      url:"${ctx }/rwp/sq2",
                      contentType : 'application/json',
                 	 data: list,
                    async:true, // 异步请求
                    cache:false, 
                     success: function (data) {
                              }
                 });

   ***$.when(myajax).done(function () {   #!!!!这里是答案***
               //要执行的操作
                self.location.href="${ctx }/srwp/show?A=aaa&B="+gro;
            });
 类似资料: