0

我必须使用贝宝订阅按钮。它工作正常。我的问题是,如果我们可以使金额动态化。如果不是,那么配置具有动态金额的订阅计划的最佳选择是什么。我当前的按钮代码是

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" target="_top">
      <input name="custom" type="hidden" id="custom" value="<?php echo $this->uri->segment(3); ?>">
     <input type="hidden" name="cmd" value="_s-xclick">
     <input type="hidden" name="hosted_button_id" value="valuedummy">
     <input type="image" src="https://www.sandbox.paypal.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.sandbox.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
4

2 回答 2

0

我目前正在开发一个 Paypal 订阅页面,用户可以在其中选择多个订阅(单选按钮)。每个单选按钮都有我需要的值的属性:

<input id="4" class="packageRadio" type="radio" value="4" data-desc="6 month package" data-type="M" data-period="6" data-amount="240.00" data-count="2" name="package">

当用户选择一个包时,单选按钮上的 jQuery click 事件函数会将所需的值添加到我的 Paypal 表单中。

于 2013-06-14T06:04:27.117 回答
0

一旦尝试此代码

<form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick-subscriptions">
<input type="hidden" name="business" value="me@mybusiness.com">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="no_shipping" value="1">
<input type="image" src="http://www.paypal.com/en_GB/i/btn/x-click-but20.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<input type="hidden" name="a3" value="5.00">
<input type="hidden" name="p3" value="1">
<input type="hidden" name="t3" value="M">
<input type="hidden" name="src" value="1">
<input type="hidden" name="sra" value="1">
</form>

或单击此链接Paypal 订阅按钮

于 2013-06-13T12:53:01.073 回答