我正在尝试使用以下jQuery调用对我的服务器进行 Ajax调用:
$.ajax({
type: "GET",
dataType: "jsonp",
url: "http://iceworld.sls-atl.com/api/&cmd=time",
success: function (data) {
console.log("success");
console.log(data);
},
error: function (error) {
console.log("error");
console.log(error);
},
});
我从浏览器中获得了我期望的数据,但 Firebug 一直说“SyntaxError:invalid label”,如下所示:
所以,令我困惑的是为什么调用错误回调而不是成功。我想知道我在这里做错了什么。