带验证的 Javascript 多步骤表单
我正在尝试使用 javascript 和 div 创建一个多步骤表单。我知道如何以这种方式创建表单,但问题是我希望在进入下一步之前验证每个步骤中的字段。示例:如果用户未填写必填字段或字段中有错误,则该框将以红色突出显示,并且在更正之前不会进入下一步。我知道如何进行验证,但无法停止页面。任何帮助将不胜感激。
谢谢!
I am trying to create a multistep form using javascript and div. I know how to create the form this way but the problem is I want the fields in each step to be validated before moving to the next. Example: If the user did not fill up a required field or have error in a field the box will be highlighted in red and they will not be bring to the next step until it is corrected. I know how to do validation but not able to stop the page. Any help will be appreciated.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要阻止表单提交,您需要添加
您可以调用类似的方法;)
Validate 是您的验证函数,然后如果表单有效,
To stop the form from submitting you need to add
Validate is your function for validationg, then you can call something like this
if the form is valid ;)