1

所以我知道有很多网站试图打破框架(框架破坏),然后有整个循环的“破坏框架破坏者”和“破坏框架破坏者破坏者”等。有没有办法预测是否网站会尝试突破你的框架吗?我希望我的程序尝试将站点加载到框架中,如果它试图突破,只需放弃尝试并停止加载框架。这是我之前尝试过的:

<iframe id="framed_source" src = "<%= @excerpt.url %>"></iframe>
<script type="text/javascript">
    if ( top === self )
    {
        $(".framed_source").remove();
    }
</script>

不幸的是,即使删除了 iframe,它仍然会重定向到原始站点?我怎样才能删除框架并完全放弃加载他们的网站的尝试,这样就不会发生重定向?

4

2 回答 2

0

使用此代码将提示用户,如果他愿意,他可以保留在您的页面中......(我没有尝试过)

<script type="text/javascript">
    window.onbeforeunload=function(e){
       $(".framed_source").remove();
       return 'Please keep here I will remove that buster iframe!';
    }
<script type="text/javascript">
于 2012-03-21T18:26:53.410 回答
0

这是一个例子

<div id="pcontent"></div> <!-- Page 1 html -->
<script>
   setInterval(function(){//set interval
       if(!$('iframe').contents().find('#icontent').length)//check if div exists on iframe
          window.location.href= 'blbla.com';//if so redirect
    },100);//end interval
</script>
<iframe> <!-- This is your iframe below is the javascript code should go to page2.html -->
   <div id="icontent"></div>
   <script>
     setInterval(function(){
      if(!top.getElementById('pcontent').length)//check if the div exists on top most window
      window.location.href= 'blbla.com';
     },100);
   </script>
</iframe>

现在:iframe 内部是 iframe 应该具有的... [仅插图]

您还可以检查其他内容,例如,如果内容没有宽度、高度、内部文本和 html 不匹配等...

于 2011-07-04T16:19:49.270 回答