这是我的代码
$.ajax({
type: "GET",
url: "http://example.com?keyword=r&callback=jsonp",
success: function (data) {
alert(data);
},
dataType: "jsonp",
error: function (xhr, errorType, exception) {
var errorMessage = exception || xhr.statusText;
alert("Excep:: " + exception + "Status:: " + xhr.statusText);
}
});
好的,所以上面的代码工作正常,我得到一个 jsonp 的数据。现在我不知道如何将 jsonp 转换为 json。