原文: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.youkuaiyun.com/kakaxid/article/details/52624988
window.location.href、location.href 是本页面跳转
parent.location.href 是上一层页面跳转
top.location.href 是最外层的页面跳转
本文介绍了解决内嵌iframe页面中session过期导致的重定向问题。通过简单的JavaScript代码实现从iframe内部强制跳转到最外层窗口,适用于登录等场景。
403






