从mvc应用程序连接到外部URL时出现Ajax错误

时间:2016-03-11 17:46:02

标签: jquery ajax asp.net-mvc asp.net-mvc-4

我正在尝试从我的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错误。

0 个答案:

没有答案