从一个子域到另一个子域的 AJAX 调用
我想从一个子域调用 AJAX 请求到另一个子域。
假设我想从其他子域 http://subdomain1.site.com 上的 ASPX 页面请求 http://subdomain2.site.com/ajax/handler.ashx /Default.aspx
任何想法如何做到这一点?
I want to call AJAX Request from one subdomain to other.
Say I want to request http://subdomain2.site.com/ajax/handler.ashx from a ASPX page on other subdomain http://subdomain1.site.com/Default.aspx
Any IDEA how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据https://developer.mozilla.org/en/Same_origin_policy_for_JavaScript,您可以设置< code>document.domain 为域的后缀,所以
但是,我还没有对此进行测试。
According to https://developer.mozilla.org/en/Same_origin_policy_for_JavaScript, you can set
document.domain
to a suffix of the domain, soHowever, I have not tested this.
您看过 JSONP 吗?
have you taken a look at JSONP?