http://stackoverflow.com/questions/9218900/jquery-getjson-and-jquery-parsejson-return-object-object
alert(jQuery.parseJSON(data))显示[object Object], 应该改用stringify把data转为JSON String。
alert(JSON.stringify(data));
http://stackoverflow.com/questions/9218900/jquery-getjson-and-jquery-parsejson-return-object-object
alert(jQuery.parseJSON(data))显示[object Object], 应该改用stringify把data转为JSON String。
alert(JSON.stringify(data));