var temp="";
$.ajax({
url:"",
async:false, //同步
success:function(data){
//$("#show1").html(data); //当async:true时是“异步”,只能在回调函数中获取值
temp=data; //当async:false时是“同步”,此时外面才能获取到回调函数中的值}
//array=data;
})
//如果data是json,可以使用
var array=new Array();
温馨提示:答案为网友推荐,仅供参考