【发布时间】:2015-08-23 17:34:33
【问题描述】:
我们有几个产品,第一个产品有一个与之关联的下拉菜单。
不知何故,这个下拉菜单阻止了从第二个产品提交数据。请看http://www.kalikalos.com/eStore/book_test.html
我们需要做些什么来完成这项工作?
<form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick" />
<input type="hidden" name="business" value="info@kalikalos.com" />
<input type="hidden" name="currency_code" value="EUR" />
<input type="hidden" name="item_name" value="Facilitator_in_residence" />
<table width="90%" border="1" align="center">
<tr><th> FIR PROGRAMME</th><th align="center"> FACILITATOR IN RESIDENCE</th><th width="80" align="center">N<sup>o</sup>. of Places</th><th width="70">Standard FIR <font color="#FF0000">€165</font></th><th width="80" align="center">Early Bird FIR <font color="#FF0000">€122.50</font></th><th width="80" align="center">Leisure FIR <small>(Less staff commitment)</small> <font color="#FF0000">€235</font></th><th width="60" align="center">Artist, Scientist<br />or Writer in Residence <font color="#FF0000">€295</font></th></tr>
<tr bgcolor="#FFFF66"><th><b><i><big>Facilitator-in-Residence</big></i></b> <br /><br /> from June through September
<table align="center">
<tr><td>
<input type="hidden" name="on0" value="Start_Date" /></td>
<td>
<select name="os0">
<option value="~~-">Select start date </option>
<option value="29May">29 May </option>
<option value="26June">26 June </option>
<option value="17July">17 July </option>
<option value="28Aug">28 Aug </option>
<option value="4Sept">4 Sept
</option>
</select>
</td>
</tr>
</table>
</th>
<td><img src="thumbs/yoga_in_roundhouse.jpg" width="115" height="92" alt="" align="left" /></td>
<td> <input type="text" size="2" maxlength="3" name="quantity" /></td>
<td title="165"><label>
<input type="radio" name="amount" value="165" checked="checked" />
</label></td>
<td title="122.50"><label>
<input type="radio" name="amount" value="122.50" />
</label></td>
<td title="235.00"><label>
<input type="radio" name="amount" value="235.00" />
</label></td>
<td title="295.00"><label>
<input type="radio" name="amount" value="295.00" />
</label></td>
</tr>
<!-- Accommodations line -->
<tr bgcolor="#CCFF99">
<th align="center"><h3>Select Your Accommodation</h3> </th>
<td><img src="thumbs/RoomG_martiou.jpg" width="100" height="75" alt="" align="right" /> </td>
<td align="center"><small><b>Please re-enter N<sup>o</sup>. of Places</b></small><input type="text" size="2" maxlength="3" name="quantity_1" /></td>
<td bgcolor="#FFFF99"><small>Standard retreat price incldues triple or quad accomodation</small><br /> <label>
<input type="radio" name="amount_1" value="0" checked="checked" />
</label></td>
<td title="€75/person"><label>Twin (€75)
<input type="radio" name="amount_1" value="75" />
</label></td>
<td title="€150"><label>Single (€150)
<input type="radio" name="amount_1" value="150" />
</label></td>
<td title="€.02"><label>Request Tent
<input type="radio" name="amount_1" value=".02" />
</label></td> </tr>
</table>
<br />
<center>
<input type="hidden" name="item_name_1" value="Accommodation" />
<input type="image" src="../eStore/paynow.jpg" name="submit" alt="Make payments with PayPal - it's fast, free and secure!" />
</center>
</form>
【问题讨论】: