实现带有选项的表单提交确认对话框要提交或取消,您可以使用内联 JavaScript 确认对话框。此对话框显示一条弹出消息,提示用户确认表单提交,并提供两个按钮:“确定”和“取消”。
要使用内联 JavaScript 确认对话框,请将以下代码添加到 HTML form:
<code class="html"><form onsubmit="return confirm('Do you really want to submit the form?');"></code>
如果您需要在提示用户确认之前执行额外的验证,您可以创建一个外部 JavaScript 函数来进行验证和确认确认。操作方法如下:
<code class="javascript">function validate(form) { // Validation code here ... if (!valid) { alert('Please correct the errors in the form!'); return false; } else { return confirm('Do you really want to submit the form?'); } }</code>
<code class="html"><form onsubmit="return validate(this);"></code>
您可以使用消息和按钮自定义确认对话框的消息和按钮标签确认()函数中的选项。例如:
<code class="javascript">confirm({ message: 'Are you sure you want to continue?', buttons: ['Yes', 'No', 'Cancel'] });</code>
以上是如何实现带有提交和取消选项的 JavaScript 表单提交确认对话框?的详细内容。更多信息请关注PHP中文网其他相关文章!