这是示例代码。
<form id="form1" name="form1" action="phpPage.php" method="POST">
<!--5 diff values in form1 . . . -->
<input id="b1" onclick="functionOne();">
</form>
<form id="form2" name="form2" action="phpPage.php" method="POST">
<!-- 5 diff values in form2 . . . -->
<input id="b2" onclick="functionTwo();">
</form>
我最多有 8 个表格。
问题是当我单击按钮时b5
,在执行了所有验证检查之后,我想要它,以便它从form1
-发送所有值form5
。我functionFive()
通过 jQuery 收集了 JS 函数 (;) 中的值。如何将这些值发送到phpPage.php
?
请记住,我们已经触发了onclick
事件b5
,因此,functionFive
已调用 进行验证检查。如何将值从这里发送到 php 页面?