window.top //最顶层窗口
window.self //当前窗口
window.parent //父级窗口框架
"window.location.href"、"location.href"是本页面跳转jsp
"parent.location.href"是上一层页面跳转url
"top.location.href"是最外层的页面跳转.net
举例说明:orm
若是A,B,C,D都是jsp,D是C的iframe,C是B的iframe,B是A的iframe,若是D中js这样写对象
"window.location.href"、"location.href":D页面跳转blog
"parent.location.href":C页面跳转get
"top.location.href":A页面跳转iframe
若是D页面中有form的话,io
<form>: form提交后D页面跳转
<form target="_blank">: form提交后弹出新页面
<form target="_parent">: form提交后C页面跳转
<form target="_top"> : form提交后A页面跳转
关于页面刷新,D 页面中这样写:
"parent.location.reload();": C页面刷新 (固然,也能够使用子窗口的 opener 对象来得到父窗口的对象:window.opener.document.location.reload(); )
"top.location.reload();": A页面刷新
在使用框架时,常常会对框架子页面进行页面引导的状况,若是只是简单的设置location. href="",会使得整个页面显示在子框架中,致使出现重叠框架。如何解决呢?很简单。只要指定子框架的父级框架页面连接至目标页面便可。如
window.top.framename.location.href = url;
window.parent.location.href=url;
mainframe.location.href=url;
原文地址: https://blog.csdn.net/jason_ldh/article/details/33732343