美文网首页
iframe 重定向

iframe 重定向

作者: sunnyRube | 来源:发表于2018-07-02 14:46 被阅读202次

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

     code:

     if (window != top) {

    top.location.href = location.href;

    }

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

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

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

    相关文章

      网友评论

          本文标题:iframe 重定向

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