即使点击取消后,表单也会提交

时间:2018-06-07 06:35:14

标签: javascript html forms form-submit confirm

我正在进行表单提交,并且我正在显示一个确认框,询问用户是否确实要继续。但即使用户点击取消,表单仍然会被提交。

 <form onsubmit="return confirm('If you enter the incorrect number, the search will still be conducted and charge you for the cost of the search. do you want to continue?.')" action="http:example.com/" id="customersearch" name="customersearch" role="form" method="post" accept-charset="utf-8" novalidate="novalidate">

我该如何避免这种情况?有人可以告诉我如何在用户点击取消时停止提交表单吗?