我有一个 json 数组,其中包含由 Web 服务返回的回调并返回?({"
并且 json 继续。
我可以使用调用 json 数组
$(document).ready(function(){
var url = "the url goes here ending with ?callback?";
$.getJSON(url , null, function(data) {
alert(data.length);
});
});
但问题是我总是得到未定义的数据长度......
有什么建议么?