如何避免 Chrome 控制台错误 Unsafe JavaScript?
Chrome 在控制台中显示此错误“不安全的 JavaScript 尝试通过 URL https://domain1/app1/ 从框架访问框架URL https://domain2/app1/。”
Chrome display this error in console "Unsafe JavaScript attempt to access frame with URL https://domain1/app1/ from frame with URL https://domain2/app1/. Domains, protocols and ports must match."
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果一个框架不是同源的,则它无法访问另一个框架的内容。如果这就是您想要实现的目标,那么您就无法解决该问题。
A frame cannot acces the content of another frame if it is not of the same origin. If that is what you're trying to achieve, you cannot work around that issue.
浏览器不允许 Javascript 跨域访问,因为恶意网站将能够与其他网站交互,这将是一个巨大的安全问题。
我在谷歌群组中发现了这个,可能值得一看:
The browser will not allow Javascript to access cross domain, as malicious websites would be able to interact with other sites which would be a huge security concern.
I found this on Google groups, might be worth looking at: