1、

<script type="text/javascript"> 
if (top.location !== self.location) { 
    top.location=self.location; 
} 
</script>  

2、

<script type="text/javascript"> 
if (top.location !== self.location) { 
    top.location = "../index.jsp";//跳出框架,并回到首页 
} 
</script> 

3、

 if(window.parent.length>0) 
         window.parent.location=location; 
//*******************
if (window != top) 
     top.location.href = location.href; 

 

相关文章:

  • 2021-12-05
  • 2021-06-24
  • 2021-10-24
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-29
  • 2021-09-24
  • 2022-12-23
  • 2022-02-08
相关资源
相似解决方案