在Jsp中如何实现页面跳转

1使用javaScript中的window.location.href="要跳转的页面";

2在超链接中href=‘’ location=“要跳转的页面”,例如<a href="index.jsp">首页</a>;

3from表单提交:action=‘’,要跳转的页面

4使用jsp内置对象request和responce,执行请求的转发和重定向来实现页面跳转

原文地址:https://www.cnblogs.com/besthetiao/p/4515992.html