我正在尝试制作一个选项下拉菜单,如果选择了“其他”选项,当我尝试显示一个文本框时我被卡住了。
这就是我所拥有的:
<span id="con-country"><label for="country">Country: </label>
<select name="country" required="required">
<option value="usa">United States</option>
<option value="uk">United Kingdom</option>
<option id="other" value="other">Other</option>
</select>
</span>
<span id="con-specify">
<label for="specify">Specify: </label>
<input type="text" name="specify" id="c-specify" required="required"></input>
</span>
CSS:
#con-specify{
margin-left: 50px;
display: none;
}
简单吧?,问题是我不知道如何在 jQuery 中编写代码
那么,如果用户在菜单中选择其他,那么应该会出现文本框,我该怎么做呢?