代码如下:
aa=$.ajax({ type: 'POST', url: 'data.php', dataType: 'json', cache: false, error: function(){ alert('出错了!'); }, success:function(json){ var a = json.gl; //角度 return a; } }); alert(aa);
已经成功返回值了,可是弹出的aa是对象,不是json.gl的值,怎么解决?
你这个跟我昨天遇到的问题类似,你好好看看这篇帖子就 明白了 http://bbs.landingbj.com/t-0-309131-1.html
后面一个alert弹出的变量其实是undefined,所以是object对象