-1

我想要在 wordpress 的文本框中输入动态价格的 paypal 付款。任何人都可以帮助我吗?根据用户选择和价格表,总价格会发生变化,并由用户计算。用户将在文本框中输入该金额,该金额将在贝宝支付。如何做到这一点?我对此进行了研究。

4

1 回答 1

1

您可以使用类似于以下的代码,其中有一个文本框供买家输入金额。然后他们单击按钮进行付款,他们将被重定向到该金额的 PayPal。

<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<!-- Identify your business so that you can collect the payments. -->
<input type="hidden" name="business" value="my_site@my_site.com">
<!-- Specify a Buy Now button. -->
<input type="hidden" name="cmd" value="_xclick">
<!-- Specify details about the item that buyers will purchase. -->
<input type="hidden" name="item_name" value="Hot Sauce-12 oz. Bottle">
<input type="hidden" name="currency_code" value="USD">
<input type="text" name="amount" maxlength="60">
<br />
<!-- Display the payment button. -->
<input type="image" name="submit" border="0" src="https://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" alt="PayPal - The safer, easier way to pay online">
<img alt="" border="0" width="1" height="1" src="https://www.paypal.com/en_US/i/scr/pixel.gif" >
</form> 
于 2013-05-02T13:33:30.233 回答