我想将AJAX请求从一个子域调用到其他子域。
说我想从其他子域http:// subdomain1 上的ASPX页面请求http:// subdomain2 .site.com / ajax / handler.ashx。 site.com/Default.aspx
任何IDEA如何做到这一点?
答案 0 :(得分:0)
根据https://developer.mozilla.org/en/Same_origin_policy_for_JavaScript,您可以将document.domain
设置为域的后缀,因此
document.domain='example.com'
但是,我没有测试过这个。
答案 1 :(得分:0)
你看过JSONP吗?