还有其他方法可以访问父框架吗?

发布于 2024-12-17 03:08:02 字数 244 浏览 1 评论 0原文

我试图阻止 iframe 中的 javascript 可能获得对父文档的访问权限。虽然我意识到没有 100% 确定的方法可以防止这种情况发生(),但我需要采取我能想到的所有步骤。到目前为止我只想到了这两个......你能想到吗?

<script type="text/javascript">
    var top = null,
        parent = null;
</script>

I'm trying to block out a javascript that's within an iframe from possibly gaining access to the parent document. While I realize there's no 100% sure way to prevent this from happening(), I need to take all steps I can think of. So far I've only come up with these 2.... can you think of any?

<script type="text/javascript">
    var top = null,
        parent = null;
</script>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼泪都笑了 2024-12-24 03:08:02

如果可以的话,为什么不将父文档放在与 iframed 不同的域中呢?

这样,保护就变得无懈可击 - 浏览器将为您强制执行同源策略

If you can, why not put the parent document onto a different domain than the iframed one?

That way, the protection becomes watertight - the browser will enforce the Same Origin Policy for you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文