function test2(){
ifr1.location.href ="2.html"// ifr1 是指主页面下的iframe id.
}
然后某子子子页面
function testclick(){
top.test2()
//window.location.href ="test.html"
}
button 的 onclick ="testclick()", 至于5秒的定义可以自己找一下资料自行解决.
实际工作中遇到了iframe里嵌套的页面的跳转问题,上网查了一下,现在查到的做一下记录。
先假设A,B,C,D都是页面,D是C的iframe,C是B的iframe,B是A的iframe,在D中跳转页面的写法区别如下:
js跳转:
form或者链接:
D页面中有form
这个这样可以实现.在button中添加处理方法就可以了
<input
type="button"
onclick=p()>
一个可能的写法可以是:
function
p(){
var
o=window.open("1.html")
o.frames["iframe1"].location="2.html"
}