2013-03-22 47 views
0

我有非常簡單的Entry Order頁面,可以根據年齡和Pay Now按鈕選擇下拉選項。 我不想在PayPal頁面上更改數量,我想在DropDown下面顯示一個數量文本框(默認值爲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

[你嘗試過什麼?](http://whathaveyoutried.com) – chriz 2013-03-22 12:06:04

+0

的支付按鈕的作品。我想我需要一個輸入標籤要求在文本框中的數量,但我不知道如何將它傳遞到貝寶網站(類似於上面的名稱「on0」(我對貝寶很新) – 2013-03-22 13:56:00

回答

1

,你會想用越過數量的變量,將是「量」。所以你可以添加一行類似於下面的代碼。

Quantity: <input type="text" name="quantity" maxlength="5" value="1"> 
+0

輝煌 - 很多謝謝,我不認爲這會很簡單! – 2013-03-24 11:59:09