function test2(){
ifr1.location.href ="2.html"// ifr1 是指主页面下的iframe id.
}
然后某子子子页面
function testclick(){
top.test2()
//window.location.href ="test.html"
}
button 的 onclick ="testclick()", 至于5秒的定义可以自己找一下资料自行解决.
这个这样可以实现.在button中添加处理方法就可以了
<input
type="button"
onclick=p()>
一个可能的写法可以是:
function
p(){
var
o=window.open("1.html")
o.frames["iframe1"].location="2.html"
}