Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在提交表单之前添加多个步骤。喜欢:
注册页面:
第 1 步和第 2 步是单独的 DIV(在下次单击时显示/隐藏)
你可以试试这个 JS 片段:
var formToValidate = $('place the id of the form, that I want to validate'); var validator = new Validation(formToValidate); if(validator.validate()) { /* The logic, that you want to execute if you pass the validation. */ ...... ...... }
祝你好运!