第一种:window.location.href="login.jsp?backurl="+window.location.href;
第二种:window.history.back(-1);
第三种:window.navigate("top.jsp");
第四种:self.location='top.htm';
第五种:top.location='xx.jsp';
- redirect 方式
response.sendRedirect("/a.jsp"); - forward方式
RequestDispatcher dispatcher = request.getRequestDispatcher("/a.jsp");
dispatcher .forward(request, response);