我正在尝试使用 GWT 制作一个将在一个 iframe 中运行的应用程序。直到这里一切正常,问题是我在我的实际网络中有一个表单,它将请求发送到 iframe。当我按下“发送表单”按钮时,使用 java 脚本更改 iframe 的 src 并稍后刷新它:
document.getElementById('iframeSpecialOffers').src = container.url;
document.getElementById('iframeSpecialOffers').contentWindow.location.reload();
网络在 www.example.com:81 中运行,我的 iframe 的新 src 在 www.example.com:8082 中运行,我收到此错误
Unsafe JavaScript attempt to access frame with URL http://example:8082/Home.html#!TilePage;searchQuery=*;searchMode=1;amount=1;
position='47.3686498,8.539182500000038';leftBottomPosition='47.32023,8.448059899999976';
rightTopPosition='47.43468,8.625370100000055';availabilityEndDate=datetime'2012-08-012T18:00:00';$culture=en
from frame with URL http://example:81/. Domains, protocols and ports must match.
非常感谢 !