yxhxj2006

常用链接

统计

最新评论

JS 跳出iframe框架

(1)session过期后登陆页面跳出iframe页面问题
登陆页面增加javascript:
function window.onload()
    {
        if(window.parent.length>0)
         window.parent.location=location;
    }

或者:

<script>

if (window != top)
top.location.href = location.href;

</script>


(2)自动跳出iframe的代码
<script type="text/javascript">
if (top.location !== self.location) {
    top.location=self.location;
}
</script> 



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

posted on 2014-09-26 08:55 奋斗成就男人 阅读(263) 评论(0)  编辑  收藏


只有注册用户登录后才能发表评论。


网站导航: