字段 项目 字段数量
-------- -----
-------- ------
-------- -----
------ -- ------
添加更多
项目字段和数量由用户手动输入,如果他们需要输入更多项目,他们将单击添加更多按钮
我有一个 5 行表格,每行两列,如上所述。
我想动态添加更多文本字段,单击添加更多按钮,我需要使用 PHP 通过 POST 获取值。
我看过类似的帖子,但他们一次只添加一个输入字段或一堆字段。
我希望单击一下即可添加字段 item 和 qty 。
<form id="quick_post" method="post">
<table id="input_fields">
<tr>
<td><input class="orderinput" type="text" name="product[]">
</td>
<td><input class="orderquan" type="text" name="quantity[]" size="1" maxlength="3">
</td>
</tr>
<tr>
<td>
//In here i want to add more Input Text product fields
</td>
<td>
//In here i want to add more Input Text Quantity fields
</td>
</tr>
<tr>
<td><input class="more" type="submit" value="Addmore" name="addmore"></td>
</tr>
</table> </form>