先拿下面的例子打个比方
<frameset rows="120,*">
<frame src="page1.jsp" target="tag">
<frame src="page2.jsp">
</frameset>
正常情况下在page2中使用response.sendRedirect()方法或者request.getRequestDispatcher().forward()等方法跳转页面的时候frameset框架上层或者下层的部分仍然会保留
如果想重新开启新的页面的话可以
先获得 printWriter out = response.getWriter();
out.write("<script>window.parent.location.href='JSP/index.jsp';</script>");
在HTML的body中加入<script>window.parent.location.href='JSP/index.jsp';</script>
其中标注部分为跳转到得页面
如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛