jquery有自带的eval()方法,用法如下:$.ajax({...success: function(data) {var obj = eval("("+data+")"); // 解析}});上面的obj就是解析后的json对象了,当然你要保证ajax请求成功有返回值哦