】;2、透過前端js實現,例如【window.location.href = "index.html" 】。"/> 】;2、透過前端js實現,例如【window.location.href = "index.html" 】。">
1、頁面標籤
<a href="index.html">
2、前端js
(推薦影片教學:java影片教學)
window.location.href = "index.html"
3、頁面轉送
前端實際只傳送一次請求,後端兩次請求共用request和response物件。
request.getServletContext().getRequestDispatcher("index.html").forward(request, response);
4、頁面重定向
告訴前端重新發送一次請求,兩次請求是分開的。
response.sendRedirect("index.html");
相關文章教學分享:java入門教學
以上是java如何實現頁面跳轉的詳細內容。更多資訊請關注PHP中文網其他相關文章!