頁面跳轉方式1——herf
在一些html的文檔中,用herf實現頁面跳轉的比較常見,也很好用。
頁面跳轉方式2——利用表單action
<td>
<form method="post" action="ChangrCount.jsp" id="form1">
<input type="hidden" name="albumId" value="${item.albumId}" />
<input style="width:50px;" type="text" name="count" value="${item.count}" id="namecount"/>
</form>
</td>
頁面跳轉方式3——response.sendRedirect("cart.jsp");
esponse.sendRedirect("cart.jsp");的功能是地址重定向(頁面跳轉);
