<frameset rows="15%,70%,15%">
   <frame src="top.jsp" name="top" noresize scrolling="no">
   <frameset cols="20%,80%">
<frame src="leftmenu.jsp" name="left">
<frame src="main.jsp" name="main">
   </frameset>
   <frame src="below.jsp" name="below" noresize scrolling="no">
</frameset>
这是页面的布局,在leftmenu.jsp页面上放一个button,通过button的onclick事件链接到某个页面
onclick="location.replace('show.jsp')"如何才能让该页面(show.jsp)在右侧的框架(main)中
显示?
由于某种原因不考虑<a href="show.jsp" target="main">click</a>的形式