【发布时间】:2018-08-06 16:20:35
【问题描述】:
<table class="manual_journal_table table table-bordered">
<tr>
<th>Account</th>
<th>Party</th>
<th>Debit</th>
<th>Credit</th>
<th>Action</th>
</tr>
<tr id="clone">
<td><input type="text" required name="account" id="account"></td>
<td><input type="text" required name="party" id="party"></td>
<td><input type="text" required name="debit" id="debit"></td>
<td><input type="text" required name="credit" id="credit"></td>
<td><a href="#" class="removejournal btn btn-flat btn-danger">Remove</a></td>
</tr>
</table>
<a href="#" class="add_new_row btn btn-flat btn-success">Add New Row</a>
我想使用 post 方法从克隆的表中获取值,然后我想将它插入到数据库表中
【问题讨论】: