我有一个非常简单的Entry Order页面,下拉选项取决于年龄和“立即付款”按钮。 我想在PayPal页面上更改数量,而不是在DropDown下方显示Quantity TextBox(默认值为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>
答案 0 :(得分:1)
您希望用于传递数量的变量将是“数量”。所以你可以添加一行类似于下面的代码。
Quantity: <input type="text" name="quantity" maxlength="5" value="1">