我有 16 种产品,所有这些产品都有单独的添加到购物车按钮。当客户输入他们想要的数量然后点击添加到购物车时,产品被添加到购物车中,客户被引导到相应的贝宝购物车。我想知道是否有一种方法可以执行相同的操作而不必为每个产品制作单独的按钮?
这是我的一个按钮的代码:
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="93XBL9HZ8D5MG">
<table>
<tr><td><input type="hidden" name="add" value="1"></td></tr><tr><td>
<input type="hidden" name="item_name" value="AR.VIN.001 - Unframed">
Qty <input type="text" name="quantity" maxlength="5" value="1" style="position: relative; width:30px; height: 23px; top: 25px; left: 35px;">
</table>
<input type="image" src="./img/button.gif" border="0" name="submit" alt="PayPal – The safer, easier way to pay online." style="position:relative; left: 50px; top: 0px;">
<img alt="" border="0" src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" width="1" height="1">
</form>'