使用js iframe框架页面跳转(跳出父框架)
2022-12-06 加入收藏
常用的iframe操作语句
"window.location.href"、"location.href"是本页面跳转
"parent.location.href"是上一层页面跳转
"top.location.href"是最外层的页面跳转
通过javascript从 框架页 向 父框架
parent.location.href="index.asp";
or
top.location.href="index.asp";
例
1.跳出框架,在父页面。
jsp:
代码如下 | 复制代码 |
<script language="javascript"> window.parent.frames.location.href="../welcome.en" </script> |
java:
PrintWriter out = response.getWriter();
out.write("<script type='text/javascript'>window.parent.frames.location.href = '../welcome.en';</script>");
return;
2.从一个框架跳转到 name="main" 的框架里。
代码如下 | 复制代码 |
<script language="javascript"> var key = document.getElementById(" ## ").value; window.parent.main .location.href= "welcome.en ? key=" + key; </script> |
3.ContentList 当前页的iframe名字
代码如下 | 复制代码 |
window.ContentList.location.href = '../welcome.en'; |