jQuery offers a parseJSON method directly from a jQuery object:
var data = $.parseJSON('{"title":"\u90ed\u5bcc\u57ce - \u641c\u7d22"}');
To retrieve data via AJAX, $.getJSON will run this internally and pass the result of $.parseJSON as the final result of the request.
source share