我创建了一个贝宝订阅按钮,但是我不知道如何为每个产品添加ID号。
代码
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="PULBECSY5HQ2W">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_subscribeCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
对此有任何帮助,深表感谢。
答案 0 :(得分:1)
这是一个托管按钮。您将无法直接将其他字段添加到HTML的托管按钮。相反,您需要在按钮创建过程中取消选中“在PayPal上保存”复选框,以创建一个非托管按钮。
这将允许您添加任意数量的standard variables,但不会像托管按钮那样安全。
如果您要获得全面的灵活性和安全性,则需要切换为使用APIs。