首先来复习一下常用的iframe操作语句:
①本页面跳转语句:
"window.location.href"
或者
"location.href"
②上一层页面跳转语句:
"parent.location.href"
③最外层的页面跳转语句:
"top.location.href"
④通过javascript从 框架页 向 父框架:
parent.location.href="1.html";
或者
top.location.href="1.html";
示例如下:
1.跳出框架,在父页面。
代码如下:
<script language="javascript">
window.parent.frames.location.href="../welcome.html"
</script>
2.从一个框架跳转到 name="main" 的框架里。
代码如下:
<script language="javascript">
var key = document.getElementById(" ## ").value;
window.parent.main .location.href= "welcome.en ? key=" + key;
</script>