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

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

 

原文: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     是最外层的页面跳转

html5页面嵌套iframe子页面,在ios微信里打开长按识别不了二维码,原因是iframe子页面,重定向让父级页面执行事件就可以了

原文地址:https://www.cnblogs.com/proving/p/10186038.html