参见英文答案 > What is causing “Uncaught SyntaxError: Unexpected token o” with $.parseJSON() and JSON.parse() 4个
我有一个我正在处理的网络应用程序:
$("#post").click(function () {
var u = $('#u').val();
var j = $('#j').val();
$.post("http://www.myweb.PHP",{
u: u,j: j
})
.done(function (data) {
var obj = jQuery.parseJSON(data);
alert(obj.status );
//alert("Data Loaded: " + data);
});
});
当它试图检索JSON我得到:
Uncaught SyntaxError: Unexpected token o
最佳答案
原文链接:https://www.f2er.com/jquery/428792.html