在JSP页面中,可以使用以下几种方法进行页面跳转:
response.sendRedirect("url")
方法,将请求重定向到指定的URL地址。例如:<%
response.sendRedirect("http://www.example.com");
%>
<jsp:forward>
标签,可以用于在页面中进行跳转。例如:<jsp:forward page="target.jsp" />
action
属性指定目标页面的URL地址,当表单提交时将跳转到指定页面。例如:<form action="target.jsp" method="post">
<!-- 表单内容 -->
<input type="submit" value="Submit">
</form>
window.location.href
属性或location.href
方法,将当前页面跳转到指定的URL地址。例如:<script>
window.location.href = "target.jsp";
</script>