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.
我正在使用“jquery.form.wizard.min.js”创建基于向导的表单,即分 5 步分割单个表单,问题是最后一步 formmm 是通过 ajax 提交的,但我想正常提交表单。有什么办法可以正常提交我的表格。演示链接。 插件链接
终于找到了我的问题的解决方案,只需返回“true”
this.element.ajaxSubmit(options); return false;
和
this.element.ajaxSubmit(this.options.formOptions); return false;
这部分插件代码。现在我的表单已正常提交。
在插件代码return false中用于阻止表单正常提交。
return false