同源主机,JS 中不同端口
对于两台主机,
http://1.com.local/
http://2.com.local:8080/
我如何使用 document.domain
来启用两者之间的 DOM 操作?如果我将两者都设置为 com.local
它不起作用,因为第二个主机随后获取域 com.local:8080
。
当我尝试手动将第一个域设置为 com.local:8080
时,端口被剪掉,域仍然是 com.local
。
在这种情况下如何启用 DOM 操作?
for the two hosts
http://1.com.local/
http://2.com.local:8080/
how can I use document.domain
to enable DOM-Manipulation between the two? If i set both to com.local
it doesn't work, because the 2nd host then gets the domain com.local:8080
.
When I try to set the domain of the first one to com.local:8080
manually, the port is just snipped of and the domain remains com.local
.
How can I enable DOM-Manipulation in this situation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。抱歉 - 同源包括 端口
您可以使用 CORS 和 ajax 将某些内容从一台服务器复制到另一台服务器(如果启用此功能)。
You cannot. Sorry - same origin is including the ports
You can use CORS and ajax to copy some stuff from one server to the other if you enable this.