我正在使用rails 4应用程序。我需要为捐款按钮提供付款选项。
我需要创建radiobutton以及文本框以输入捐款的支付金额。
我的代码是
<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="xxxxxxxxxxx">
<input type="hidden" name="amount" value="">
<input type="hidden" name="currency_code" value="USD">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_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>
这里我通过jQuery输入amount字段的值(代码未发布),因此它不为空(&#34;&#34;)。
但是第二步,我在隐藏字段中提交的金额未显示。
我认为有些人说无法在托管按钮上输入金额意味着每次都会修复它。
有人说创建立即购买按钮参考=&gt; https://www.paypal.com/webapps/mpp/get-started/donate-button-text-field
我应该怎样做才能使用托管按钮?
我应该更改我的代码吗?