iframe里面的页面重定向
当我们在iframe里面使用页面重定向时,重定向后的页面也会嵌入在iframe中。 但是当我们做如注销登陆返回到登陆页这种功能时,登陆页仍然嵌入在iframe中显然是不合理的。我们想要的效果是在地址栏中的页面重定向。 在javaScript中,可以使用:
top.location.href = "/login.jsp";
在jsp中,使用页面重定向是不可以的,如下面这种方式,还是会在iframe里面重定向:
response.sendRedirect("/login.jsp");
可以使用如下方式:
PrintWriter writer = response.getWriter();
writer.println("<html><script>window.open ('/login.jsp','_top')</script></html>");