我正在尝试在外部服务器上读取一个简单的 json。在 Firebug 网络面板中,我在 Response 和 JSON 选项卡中看到了正确的数据。但是成功函数没有执行。
回调显示为:fullurl?callback=jQuery1710837256851301949_1334637212326&_=1334638519052
而不是函数 - 不知道为什么 - 这可能是问题吗?
我的代码:
$.ajax({
type: "GET",
url: "external url",
dataType: "jsonp",
data : {},
success: function (data) {
console.log('success');
alert("success");
// var myname = data.name;
// var myid = data.id;
// var fullcontent= "Name: " + myname + " ID: " + myid;
// $("#jsondata").html(fullcontent);
}
});
请帮忙 - 谢谢