如何判断当前框架是否是父框架?

发布于 2024-09-07 21:29:35 字数 417 浏览 3 评论 0原文

我正在一个框架环境中工作,并试图判断执行某些 javascript 代码的框架是否是顶部框架(包含其余部分的框架)。

到目前为止,我一直在尝试检查它,

window.parent != null

但它总是返回 false,就像这个简单的例子一样。

<html>
<head>
  <script>
    alert(parent == null);
  </script>
</head>

<body>
  <h1>OH YEAH!</h1>
</body>
</html>

有办法做到这一点吗?我不需要便携,现在我正在寻找 IE6 解决方案。

I'm working in a framed environment, and trying to tell if the frame on which some javascript code executes is the top frame (the one that contains the rest).

Up until now I was trying to check it with

window.parent != null

but it always returns false, like in this simple example.

<html>
<head>
  <script>
    alert(parent == null);
  </script>
</head>

<body>
  <h1>OH YEAH!</h1>
</body>
</html>

Is there a way to do this? I doesn't have to be portable, right now I'm looking for the IE6 solution.

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

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

发布评论

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

评论(3

给妤﹃绝世温柔 2024-09-14 21:29:35

我发现这个 pdf 非常有用:
http://seclab.stanford.edu/websec/framebusting/framebust.pdf

简而言之,如果这太长而难以阅读,这就是他们最终提出的建议:

<style>
  html { display :none; }
</style>
<script>
if(self==top){
  document.documentElement.style.display = 'block';
}else{
top.location=self.location;
}
</script>

您将在本 pdf 中找到许多其他方法来执行此操作,以及每种方法的优缺点。
显然,在没有 JavaScript 的浏览器上,这个解决方案可能会很痛苦;)

I found this pdf to be very useful:
http://seclab.stanford.edu/websec/framebusting/framebust.pdf

In short, if this is too long to read, this is what they ultimately propose :

<style>
  html { display :none; }
</style>
<script>
if(self==top){
  document.documentElement.style.display = 'block';
}else{
top.location=self.location;
}
</script>

You will find many other means to do this in this pdf and each means' pro and cons.
Obviously, on browsers without JavaScript, this solution could be painful ;)

青萝楚歌 2024-09-14 21:29:35
self === top

如果在最顶层的框架集中执行,则应返回 true,否则返回 false。

self === top

should return true if executed in the topmost frameset, false otherwise.

屋檐 2024-09-14 21:29:35

您可以检查是否top.frames.length == 0

You can check if top.frames.length == 0.

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