我正在尝试从我的MVC应用程序访问外部URL。下面的jquery代码用于连接到bbc.co.uk.但我收到错误jqXHR.status == 0
$("#Contactname").change(function () {
$.ajax({
dataType: "html",
method: "GET",
url: "http://news.bbc.co.uk",
success: function (result) {
},
error: function (jqXHR, exception) {
AjaxError(jqXHR, exception, "#Contenet");
alert(2);
}
});
});
有些人可以告诉我为什么我的状态= 0错误。