JS Confirm()取消按钮仍提交表单

时间:2018-10-30 15:10:53

标签: javascript .net

我创建了一个确认框,当单击“确定”时确实会提交表单,但是当单击“取消”时仍会提交表单,我想停止这样做,任何帮助将非常有用赞赏。请参见下面的代码,请告诉我您可能还需要我提供什么,我很乐意将其发布。

function confirmation() {
    var r = confirm("Would you like to make a deposit?");
    if (r == true) {
        return true;
    } else {
        return false;
    }
}

<asp:Button ID="BtnApplyPayment" runat="server" TabIndex="750" Text="Apply &gt;&gt;"ValidationGroup ="vgPayment" OnClientClick ="confirmation();" />

1 个答案:

答案 0 :(得分:0)

您也许应该像这样捕获提交事件。

input