我用ajax 调用了服务器接口,在浏览器里看也没报错,但是就是没有数据,反反复复弄了很久,到底哪里不行,我用国家气象局的开放接口,还是不行$.ajax({ url: 'http://t.weather.sojson.com/api/weather/city/101010100', type: "GET", data: "", async: false, dataType:"jsonp", success: function(data, textStatus) { console.log('done'); console.log(data); alert("成功") }, error: function(XMLHttpRequest, textStatus, errorThrown) { alert("失败") }, complete: function(XMLHttpRequest, textStatus) { console.log("执行了"); } });