尽量描述我的问题: 以下脚本在localhost:8080
上运行$.ajax({
type: "GET",
url: 'http://localhost:8090/getinfo?index=' + index,
dataType: "jsonp",
jsonp: "callback",
jsonpCallback: "success",
success: function (data) {},
error:function(){}
})
如果成功,返回值为
success({"key":"value"})
但是,如果失败,浏览器中的控制台错误是 enter image description here 我无法在错误功能中处理它。我甚至尝试过.fail(function(){})或设置“timeout”属性,但它也不起作用。那我该怎么处理这个错误呢?