function test2(){
ifr1.location.href ="2.html"// ifr1 是指主页面下的iframe id.
}
然后某子子子页面
function testclick(){
top.test2()
//window.location.href ="test.html"
}
button 的 onclick ="testclick()", 至于5秒的定义可以自己找一下资料自行解决.
jsp中iframe页面跳转:<script language="javascript">
window.parent.frames.location.href="../welcome.jsp"
</script>
扩展:
常用的iframe操作语句
"window.location.href"、"location.href"是本页面跳转
"parent.location.href"是上一层页面跳转
"top.location.href"是最外层的页面跳转
通过javascript从 框架页 向 父框架
parent.location.href="index.asp"
or
top.location.href="index.asp"
实际工作中遇到了iframe里嵌套的页面的跳转问题,上网查了一下,现在查到的做一下记录。
先假设A,B,C,D都是页面,D是C的iframe,C是B的iframe,B是A的iframe,在D中跳转页面的写法区别如下:
js跳转:
form或者链接:
D页面中有form