1.Jsp頁面跳轉的第一種方式:提交表單
程式碼如下:
<form name="form" method="post" action="page2.jsp">
<input type="submit" value="跳轉1">
</form>
2.Jsp頁面跳轉的第二種方式:Javascript實現
<script type="text/javascript">
function next(){
window.location = "page2.jsp"; }
</script>
3.Jsp頁面跳轉的第三種方式:重定向分
<% //1.
response.sendRedirect("page2.jsp");
%>
1.Jsp頁面跳轉的第一種方式:提交表單
程式碼如下:
<form name="form" method="post" action="page2.jsp">
<input type="submit" value="跳轉1">
</form>
2.Jsp頁面跳轉的第二種方式:Javascript實現
程式碼如下:
<script type="text/javascript">
function next(){
window.location = "page2.jsp"; }
</script>
3.Jsp頁面跳轉的第三種方式:重定向分
程式碼如下:
<% //1.
response.sendRedirect("page2.jsp");
%>