我有两个字段,其中一个是文本输入字段,另一个是选择标签。问题是我希望仅启用其中一个,用户应通过单击上面的单选按钮之一来选择启用哪一个。
因此,如果用户选择第一个单选按钮,输入字段将被启用,如果他选择第二个,则选择标签将被启用。
这是我的代码:
<input type="radio" name="type" value="customurl">wanna custom url?
<input type="text" name="custom" placeholder="should be 5 charecters at least" >
<br><br>
<input type="radio" name="type" value="customurl">random?
<select name="charstype">
<option>Letters</option>
<option>Number</option>
</select>