以下是我提出跨域请求的代码。它进入错误处理程序,但表示状态为成功且状态为200。
jQuery.support.cors = true;
$.ajax({
url: url1,
type: 'GET',
dataType: 'jsonp',
crossDomain:true,
cache: false,
success: function(res) {
console.dir(res);
},
error: function(err){
console.dir(err); //It goes here and abong other statusText: succes and status: 200
}
});