select 选择器加输入框
时间: 2023-08-23 16:04:39 浏览: 87
select 增加搜索框
可以使用HTML和CSS来实现一个带有select选择器和输入框的组合,示例代码如下:
```html
<label for="my-input">输入框:</label>
<input type="text" id="my-input">
<label for="my-select">选择器:</label>
<select id="my-select">
<option value="option1">选项1</option>
<option value="option2">选项2</option>
<option value="option3">选项3</option>
</select>
```
```css
label {
display: block;
margin-bottom: 10px;
}
input[type="text"], select {
padding: 5px;
font-size: 16px;
border-radius: 4px;
border: 1px solid #ccc;
width: 200px;
}
```
这段代码会创建一个带有标签和样式的输入框和选择器组合。你可以根据自己的需要调整样式和选项。
阅读全文