同时执行多个$.getJSON() 时,数据混乱的问题的解决方法:
在执行之前加$.ajaxSettings.async = false; (同步执行)
执行你的代码之后及时恢复为$.ajaxSettings.async = true; (异步执行)
不然影响别的地方的需要异步执行的代码。
example:
$.ajaxSettings.async = false;
$.getJSON(url,data,function(data){ });
$.getJSON(url,function(data){ });
......
$.ajaxSettings.async = true;
千里之行,始于足下。改变将来,从现在开始。
原文链接:https://www.f2er.com/json/290157.html