0

这是示例代码。

<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 页面?

4

2 回答 2

4

答案是使用包含所有值的一种形式。

于 2013-01-10T20:03:47.803 回答
0

你试过ajax吗?

var formData = {
    firstName: 'Dennis',
    lastName: 'Martinez'    
};

$.ajax({
    type: 'post',
    url: 'SOMEFILE.php',
    data: formData,
    success: function(e) {
        alert('success!');
    },
    error: function(e) {
        alert('there was an error!');
    }
});
于 2013-01-10T20:05:22.493 回答