我有一个简单的页面设置,我的产品X是19.99英镑。 我想要的是用户能够添加额外的东西(通过复选框),因此每次增加价格9.99英镑(虽然第一次添加将是免费的)。
我正在使用PayPal的立即购买按钮,我确信这是可能的,虽然我不太清楚如何处理它。
选中复选框等时,应更新总价格。
请告诉我如何做到这一点。非常感谢:))
geneCheck is the checkboxes with that class (e.g. <input type="checkbox" class="geneCheck" id="KLO">)
basePrice = 19.99
totalPrice = basePrice + (geneCheck * 9.99) - 9.99)
Send totalPrice to PayPal "value"
Send Id of checkboxes to Options field with classes of geneCheck
So if the user clicks three checkboxes, for example, the totalPrice should read: 39.97
And the user should be able to pay with paypal for this amount.
DONE!!
答案 0 :(得分:0)
您可以使用Javascript更改字段值(前提是您没有使用加密按钮)。当用户提交表单时,Paypal将收到更新的值。