码迷,mamicode.com
首页 > 其他好文 > 详细

跳出IFrame几种方式

时间:2016-04-18 17:13:16      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

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; 

 

跳出IFrame几种方式

标签:

原文地址:http://www.cnblogs.com/xibei666/p/5404907.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!