我在index.jsp中有一個表單,點擊提交後我顯示一條提示「confirm submit?」。如果ok將被點擊,然後確認將會顯示子目錄.jsp。我在0123ms收到confirmationmsubmit.jsp中的文本框名稱,但問題是如果我點擊取消然後confirmmsubmit.jsp正在打開,如何在alert中單擊取消按鈕後留在index.jsp中?在點擊取消按鈕之後停留在當前頁面
任何幫助,請
的index.jsp
<form action="confirmsubmit.jsp" method="POST">
<script type="text/javascript">
<!--
function confirmation() {
var answer = confirm("Confirm submit?")
if (answer){
window.location = "confirmsubmit.jsp";// goes to confirmsubmit.jsp
}
else{
//should remain in index.jsp but here also confirmsubmit.jsp is opening
}
}
//-->
</script>
<input type="text" name="textboxname"/>
<input type="submit" onclick="confirmation()"/>
</form>
添加與確認返回()方法即 – 2012-03-01 06:35:25