0
在這裏,我的頁面有更新和取消按鈕,當我點擊取消按鈕文本框文本不清楚,我如何重定向到上一頁。HTML清除按鈕不清除文本框使用jsp文本框
我的按鈕:
<input type="reset" value="Cancel" name="Cancel"/>
在這裏,我的頁面有更新和取消按鈕,當我點擊取消按鈕文本框文本不清楚,我如何重定向到上一頁。HTML清除按鈕不清除文本框使用jsp文本框
我的按鈕:
<input type="reset" value="Cancel" name="Cancel"/>
怎麼樣只是一個簡單的復位按鈕?
<form>
<input type="text" id="textfield1" size="5">
<input type="text" id="textfield2" size="5">
<input type="reset" value="Reset">
</form>
您輸入的標籤更改爲:
<input type="reset" value="Reset" onClick="window.location.reload()">
如果你想重定向到前一頁表格提交後:
RequestDispatcher dispatcher = request.getRequestDispatcher("demo.jsp");
dispatcher.forward(request, response);
顯示更多的代碼(即形式)。 –