尝试创建一个带有要添加的项目数量的“添加到购物车”按钮,我已经添加了一个<input id="product_quantity" value="1" onChange="updateQuantity()" />
到主form
目录,因此每当我更改其中的值时,input
它应该使用查询参数将表单的操作 url 更新为input
字段中的相应值。
这是 HTML 中的概述:
<form action="index.php?option=com_virtuemart&view=cart&task=add&virtuemart_product_id[]=1&virtuemart_category_id[]=1&quantity[]=1&format=json">
<input type="product_quantity" value="1" onChange="updateQuantity();"/>
<input type="submit" />
</form>
那么如何将表单的操作 url 参数字符串更改&quantity[]=XXX
为在字段中输入的特定值input
?
谢谢