我有以下HTML形式訪問使用JavaScript
<form action="#" method="post">
<table>
<tr>
<td><label>Product:<label> <input type="text" /></td>
<td><label>Price:<label> <input type="text" /></td>
<td><label>Quantity:<label> <input type="text"/></td>
<td><label>Amount:<label> <input type="text" name="amount[]"/></td>
</tr>
<tr>
<td><label>Product:<label> <input type="text" /></td>
<td><label>Price:<label> <input type="text" /></td>
<td><label>Quantity:<label> <input type="text"/></td>
<td><label>Amount:<label> <input type="text" name="amount[]"/></td>
</tr>
<!---only two rows have been created by the user -->
<input type="button" value="Add product" onClick="addProductRow()"/>
<input type="submit" value="Submit"/>
</table>
</form>
由用戶動態創建字段中的輸入(有添加一行到頁面按鈕)的輸入名稱的數組。當用戶添加價格和數量時,金額(價格*數量)必須顯示在相關數量字段中。
我的問題是,我如何訪問每個數量字段插入總量使用JavaScript或jQuery。
預先感謝您。
你嘗試過什麼? –