如何选择带有额外文本字段的选项菜单?

时间:2014-02-28 10:02:17

标签: textfield options-menu

我正在努力使用表单元素。我喜欢有一个选项下拉菜单,但有一个额外的文本字段输入。

类似

<select name="gateway_code" id="gateway_code">
<option value="">---------</option>
<option value="ideal">Cash</option>
<option value="paypal">PayPal</option>
<option value="creditcard">Credit Card (Visa, Mastercard)</option>
</select> or
Vouchercode <input type="text" id="gateway_code" name="gateway_code" value""/>

我该怎么做?

问候

1 个答案:

答案 0 :(得分:1)

<form action="" name="" method="">
  <select name="gateway_code" id="gateway_code">
  <option value="">---------</option>
  <option value="ideal">Cash</option>
  <option value="paypal">PayPal</option>
  <option value="creditcard">Credit Card (Visa, Mastercard)</option>
  </select>
  Vouchercode <input type="text" id="gateway_code" name="gateway_code" value""/>
</form>

适合我。 :