解决iframe重定向让父级页面跳转

转:https://blog.csdn.net/xm_csdn/article/details/78131596

原文:http://www.jb51.net/article/40583.htm

有内嵌iframe的页面,当session过期时,点击连接重定向后的跳转会在iframe中跳转,在登录页面中加入下面的代码,就会在最外层页面跳转

原文:http://www.cnblogs.com/JemBai/archive/2011/10/09/2203429.html

<script language="JavaScript"> 

if (window != top) 

top.location.href = location.href; 

</script>

原文:http://blog.csdn.net/kakaxid/article/details/52624988

window.location.href、location.href   是本页面跳转

parent.location.href    是上一层页面跳转

top.location.href     是最外层的页面跳转

猜你喜欢

转载自blog.csdn.net/fly_grass_fish/article/details/82773516