js实现的防止别人嵌套自己的页面

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js实现的防止别人嵌套自己的页面相关的知识,希望对你有一定的参考价值。

我们使用iframe来嵌入页面时。

子窗口可以重写父窗口的location.href,

但是注意这里子窗口无法读取而只能重写location.href所以要求前提是您控制两个域名,知 道当前父窗口的location.href是什么并写在子窗口内,这样通过parent.location.href = "已知的父窗口的href"+"#"+hash。这样父窗口只有hash改变也不会重载。
 
所以为了防止别人iframe你的页面,可以像下面这样:
      
     try{
            if(window.location.href != parent.window.location.href){parent.window.location.href = window.location.href}
        }catch(e){
            parent.window.location.href = window.location.href    ··
        }

 

 
 
上面这个可以变成下面这个,(就是说,只要是不同域的,都直接跳到为iframe的地址)
        try{
            parent.window.location.href
        }catch(e){
            parent.window.location.href = window.location.href
        }

 

以上是关于js实现的防止别人嵌套自己的页面的主要内容,如果未能解决你的问题,请参考以下文章

JS防止页面被其他网站iframe使用方法

js查找嵌套iframe的问题

防止页面被嵌入框架代码

常见的反爬虫技术有哪些?如何防止别人爬自己的网站?

iframe中嵌套的网页样式修改

防止登录页面出如今frame中