我正在尝试使用 getJson 读取 url。它既不会触发成功功能,也不会触发错误功能。
var url = "http://demo.dreamacc.com/TextTable.json?callback=?";
$.ajax({
type: 'GET',
url: url,
async: false,
jsonpCallback: 'jsonCallback',
contentType: "application/json",
dataType: 'jsonp',
success: function (ooo) {
alert('hi');
alert(ooo);
},
error: function () {
alert('w');
}
});
但是当我试图阅读这个网址时
http://api.twitter.com/1/statuses/user_timeline/codinghorror.json?callback=?
它运作良好