--- order: 1 title: 带搜索框 --- 在浮层内顶部有搜索框的单项选择器。 ````jsx import { Select } from 'antd'; const Option = Select.Option; function handleChange(value) { console.log(`selected ${value}`); } ReactDOM.render( , mountNode); ````