使用jquery跨域ajax

时间:2012-07-20 11:50:24

标签: jquery ajax cross-domain

我想使用jquery subdomain方法在ajax()上调用AJAX: 我是从http://domain.com/

打来的
$.ajax({
    crossDomain: true,
    url:'https://sub.domain.com/',
    success: function(response) {
        alert('ok');
    },
    error: function(resp) {
        console.log(resp);
    }
});

但它不起作用,使用resp == { status:0, readyState: 0, responseText : '', statusText: 'error' }

调用错误函数

2 个答案:

答案 0 :(得分:0)

子域ajax调用也是跨域调用。如果他们指向同一个地方(例如example.com和www.example.com),情况就是如此。他们(通常)指向同一个地方。我们认为它们是一样的。但对于Ajax调用,它被认为是跨域。

请在跨域名ajax上搜索,然后你会发现lott继续。

答案 1 :(得分:0)

您可以将CORS用于此目的。

示例代码:

jQuery.support.cors = true; 

function CrosDom_ajax(url) {
        if (window.XDomainRequest
        && $.browser.msie
        && $.browser.version < 10) {
        xdr = new XDomainRequest();
        if (xdr) {
            xdr.onload = function () {
               alert(xdr.responseText);

            };
            xdr.open("get", url);
            xdr.send();
        }
        }
        else {
            $.ajax({
                url: url,
                success: function (response) {


                },
                error: function (data) {
                }
            });
         }
    }

您还需要在服务器端编写以下代码,以允许跨域访问

Response.AppendHeader("Access-Control-Allow-Origin", "*");