0

我有一个非常简单的输入订单页面,其中的下拉选项取决于年龄和“立即付款”按钮。我不想更改 PayPal 页面上的数量,而是想在 DropDown 下方显示一个 Quantity 文本框(默认值为 1),然后将值传递给 PayPal 页面。

这是我的html:

<body style="border-style:double; text-align:center;">
    <form action="https://www.paypal.com/cgi-bin/webscr" method="post" runat="server">
    <div><br />
    <input type="hidden" name="cmd" value="_s-xclick"/>
<input type="hidden" name="hosted_button_id" value="WTFZKTFE95PDG"/>
<table align="center">
<tr><td><input type="hidden" name="on0" value="Registration Fees"/><b>Registration Fees</b></td></tr><tr><td><select name="os0">
    <option value="14 Years and over">14 Years and over £20.00 GBP</option>
    <option value="under 14 Years">under 14 Years £15.00 GBP</option>
</select> </td></tr>
</table><br /><br />
<input type="hidden" name="currency_code" value="GBP"/>
<input type="image" src="https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif" name="submit" alt="PayPal — The safer, easier way to pay online."/>
<img alt="" border="0" src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" width="1" height="1"/>
    </div>
    </form>
</body>
4

1 回答 1

1

您想要用来传递数量的变量将是“数量”。所以你可以添加一行类似于下面的代码。

Quantity: <input type="text" name="quantity" maxlength="5" value="1">
于 2013-03-22T15:24:27.660 回答