我有一个网页,其中包含需要购买贝宝的产品。我使用了一个选择框来选择该产品可用的各种选项。
虽然我已经成功集成了贝宝,并且 html 页面正在将“金额”传递给贝宝页面。我无法做的是将与所选选项相对应的“item_name”传递给贝宝页面。
非常感谢任何帮助,在此先感谢。
<form name="" action="shop_paypal.php" method="post">
<input name="cmd" type="hidden" value="_xclick" />
<input name="no_note" type="hidden" value="1" />
<input name="lc" type="hidden" value="UK" />
<input name="currency_code" type="hidden" value="USD" />
<input name="bn" type="hidden" value="PP-BuyNowBF:btn_buynow_LG.gif:NonHostedGuest" />
<div class="price-bottom-box">
<!--<input type="text" name="item_name" id="item_name"value="20,000 PINS" hidden="true"/>-->
<select name="amount" id="amount" style="width:256px; height:32px;">
<option value="18" id="1">10,000 PINS - $18 </option>
<option value="35" id="2">20,000 PINS - $35</option>
<option value="75" id="3">30,000 PINS - $75</option>
<option value="140" id="4">50,000 PINS - $140</option>
</select>
<input type = "image" value = "submtbtn" name = "submtbtn" src="images/buy-now-normal-bg.jpg" id="Image1">
</form>