iframe与其父元素刷新跳转的问题

正文

先假设A,B,C,D都是页面,D是C的iframe,C是B的iframe,B是A的iframe,在D中跳转页面的写法区别如下:

js跳转:

window.location.href、location.href:本页面跳转,即D页面跳转

parent.location.href:上一层页面跳转,及C页面跳转

top.location.href: 最外层的页面跳转,即A页面跳转

页面刷新:

parent.location.reload(): C页面刷新

parent.main.location.reload(): parent是代表父级页面,main可能是父级页面里的一个iframe,整个意思就是让name=”main”的iframe页面刷新

window.opener.document.location.reload():C页面刷新(使用子窗口的opener对象来获得父窗口对对象)

top.location.reload():A页面刷新

你可能感兴趣的:(iframe与其父元素刷新跳转的问题)