确认提交
我有一个将信息提交到数据库的表单。我怎样才能做到这一点,以便当我单击“提交”按钮时,我会收到一条警报,询问我是否真的要提交它,当我单击“是”时,它会继续,如果我单击“否”,它不会提交信息。
I have a form that submits information to a database. How can I make it so that when I click the submit button, I get an alert that asks me if I really want to submit it and when I click "Yes" it continues and if I click "no" it does not submit the information.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 JavaScript
confirm()
函数。如果用户选择是,它将返回
true
并且按钮的默认操作(提交表单)将照常继续。但如果用户选择否,它将返回false
并且按钮的默认操作将被阻止。Use JavaScript
confirm()
function.If the user chooses Yes, it will return
true
and the button's default action (submitting the form) will continue as usual. But if the user chooses No, it will returnfalse
and the button's default action will be blocked.