其他分享
首页 > 其他分享> > $.post 和 $.get 设置同步和异步请求

$.post 和 $.get 设置同步和异步请求

作者:互联网

$.post 和 $.get 设置同步和异步请求

由于$.post() 和 $.get() 默认是 异步请求,如果需要同步请求,则可以进行如下使用:
在$.post()前把ajax设置为同步:$.ajaxSettings.async = false;
在$.post()后把ajax改回为异步:$.ajaxSettings.async = true;

 $.ajaxSettings.async = false;
        $.post(url, {id:id}, function(res) {
          if (res.code == 0) {
              alert(res.message);
              e.stopPropagation();
              e.preventDefault();
              $(this).attr('href','jacascript::void(0)');
          }
        },

 

https://blog.51cto.com/u_15230485/2822912

标签:异步,ajaxSettings,res,get,async,post
来源: https://www.cnblogs.com/sunny3158/p/16627197.html