美文网首页
iframe重定向让父级页面跳转

iframe重定向让父级页面跳转

作者: MC桥默 | 来源:发表于2020-02-13 11:45 被阅读0次

前言

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

<script language="JavaScript"> 

if (window != top) 

top.location.href = location.href; 

</script>

补充

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

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

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

相关文章

网友评论

      本文标题:iframe重定向让父级页面跳转

      本文链接:https://www.haomeiwen.com/subject/jsukfhtx.html