如何将数据从一种形式复制到另一种形式?

时间:2014-07-29 10:29:10

标签: jquery html-form

我有表格:

<form action="" method="post" id="form1">
    [many inputs, selects etc - form is used to filter the displayed results]
</form>

[content]
<table ...>
  <tr>
     <td>...<td>
     <td>
       <form action="" method="post" id="form2">
         [some inputs on row]
         <input type="submit" name="updaterow" value="Update row" />
       </form>
     </td>
  </tr>
</table>

当我点击form2上的提交按钮时,我想将输入数据从form1复制到form2。怎么做?

1 个答案:

答案 0 :(得分:0)

如果两个表单都有相同的元素名称,那么您可以使用this 插件如: -

$("#form2").values($("#form1").values()); 

如果没有 -
这是工作FIDDLE