我試圖讓我的網頁更高效,所以我得到了類似下面的問題中:轉發頁面的HTML DIV
是否有可能與RequestDispatcher的一個新Jsp頁面轉發到從HTML DIV Servlet?
像這樣:
someServlet.java
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws IOException, ServletException {
// do something to send a page to the HTML div in page.jsp
}
page.jsp
<div> <!-- the forwarded page must inside here --> </div>
也許使用[http://www.w3schools.com/tags/tag_iframe.asp](http://www.w3schools.com/tags/tag_iframe.asp)。 – Mike
@Mike如果你正在構建一個體面的Web應用程序,那不是你想要的。 –