所以我在一个页面上有两个表格
<form name="form1" method="post" id="form1">
...
<button id="next">NEXT</button>
</form>
<form name="form2" method="post" id="form2" action="doSomething.php">
...
<button id="submit">Submit</button>
</form>
使用jQuery validate插件验证两种表单。当form1完成并验证时,将显示form2。
我想要发生的是当用户点击form2上的提交时,它应该从form1获取数据,将其与form2合并,并对doSomething.php执行单个POST提交。几乎就像form1和form2真的只是一个大的形式。 注意:我没有使用AJAX。
我可以将它们组合成一种形式,但由于我对jQuery验证的需求,这是不可行的。 谢谢!