Frameset中的frame之间怎么刷新
Frameset中的frame之间如何刷新
<frameset>
<frame id="a" src="a.action"></frame>
<frame id="b" src="b.action"></frame>
<frame id="c" src="c.action"></frame>
</frameset>
在a.action的页面中刷新c的action的方法
window.parent.frames['c'].location.href="c.action";
<frameset>
<frame id="a" src="a.action"></frame>
<frame id="b" src="b.action"></frame>
<frame id="c" src="c.action"></frame>
</frameset>
在a.action的页面中刷新c的action的方法
window.parent.frames['c'].location.href="c.action";