フィールド アイテム フィールド 数量
-------- -----
-------- ------
-------- -----
------ -- ------ さらに
追加
項目フィールドと数量はユーザーが手動で入力し、さらに項目を入力する必要がある場合は、[さらに追加] ボタン
をクリックします。上記のように、それぞれ 2 列の 5 行のフォームがあります。
テキストフィールドを動的に追加したいのですが、 onclick add more ボタンをクリックすると、 PHP を使用して POST で値を取得する必要があります。
同様の投稿を見たことがありますが、一度に 1 つの入力フィールドのみを追加するか、多数のフィールドを追加します。
item と qty の両方のフィールドを 1 回のクリックで追加したい。
<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>