如需同步执行,需在$.get方法前增加
$.ajaxSetup({ async: false });
例如
$.get(url,function(data){
alert(1)
})
alert(2)
增加后,弹出顺序:1,2 反之则:2,1