$.ajaxSettings.async = false 是用来干什么的 元素模板为您解答
如果为false则设置为同步的
如果为true则设置为异步的
//设置为同步
$.ajaxSettings.async = false;
$.post("url", data, function(result) {
// 请求处理
},"json");
//设置回异步
$.ajaxSettings.async = true;
注意:使用这种方式,使用了同步后(. a j a x S e t t i n g s . a s y n c = f a l s e ; ) , 需 及 时 释 放 掉 使 用 异 步 ( .ajaxSettings.async = false;),需及时释放掉使用异步(.ajaxSettings.async=false;),需及时释放掉使用异步(.ajaxSettings.async = true;),不然会锁死资源,使得其他线程不能访问数据;