window.top //最顶层窗口
window.self //当前窗口
window.parent //父级窗口
"window.location.href"、"location.href"是本页面跳转
"parent.location.href"是上一层页面跳转
"top.location.href"是最外层的页面跳转
举例说明:
如果A,B,C,D都是jsp,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页面跳转
如果D页面中有form的话,
<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页面刷新
(转自:http://hi.baidu.com/linbo_fan/blog/item/70a9828928d742dafc1f104c.html)
在使用框架时,经常会对框架子页面进行页面引导的情况,如果只是简单的设置location. href="",会使得整个页面显示在子框架中,导致出现重叠框架。如何解决呢?很简单。只要指定子框架的父级框架页面链接至目标页面即可。如
window.top.framename.location.href = url;
window.parent.location.href=url;
mainframe.location.href=url;
(转自:http://hi.baidu.com/wmsjflj/blog/item/e297be0f5678f6e9ab6457db.html)
window.self //当前窗口
window.parent //父级窗口
"window.location.href"、"location.href"是本页面跳转
"parent.location.href"是上一层页面跳转
"top.location.href"是最外层的页面跳转
举例说明:
如果A,B,C,D都是jsp,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页面跳转
如果D页面中有form的话,
<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页面刷新
(转自:http://hi.baidu.com/linbo_fan/blog/item/70a9828928d742dafc1f104c.html)
在使用框架时,经常会对框架子页面进行页面引导的情况,如果只是简单的设置location. href="",会使得整个页面显示在子框架中,导致出现重叠框架。如何解决呢?很简单。只要指定子框架的父级框架页面链接至目标页面即可。如
window.top.framename.location.href = url;
window.parent.location.href=url;
mainframe.location.href=url;
(转自:http://hi.baidu.com/wmsjflj/blog/item/e297be0f5678f6e9ab6457db.html)
本文详细介绍了使用JavaScript进行页面导航及刷新的方法,包括利用window对象的不同属性实现不同层级的页面跳转,以及通过form表单提交的方式达到相同目的。此外还讲解了在使用框架的情况下如何避免页面重叠的问题。

被折叠的 条评论
为什么被折叠?



