好着急,如何在frame框架页中将一个frame的显示页面覆盖其他的frame?
我的框架页布局采用三个frame:top ,tree,main
如下:
<frameset rows="120,*" cols="*" frameborder="NO" border="0" framespacing="0">
<frame src="head.jsp" name="top" scrolling="NO" noresize >
<frameset rows="*" cols="250,*" framespacing="0" border="0">
<frame src"menu.jsp" name="tree" scrolling="no" bordercolor="#00FF00" frameborder="0">
<frame src="welcome.html" name="main" noresize>
</frameset>
</frameset>
<noframes>
通常,在main frame中操作的时候,服务器返回的页面也在main frame中。现在想让特定的返回页面(比如aaa.jsp)充满浏览器,而不显示top frame 和tree frame的内容(覆盖掉),如何才能办到?我设想在aaa.jsp的onload()方法中控制,可是不知道具体怎么写,哪位大侠指点一下,狂谢了!!!!