--- order: 1 title: 带搜索框 --- 展开后可对选项进行搜索。 ````jsx import { Select } from 'antd'; const Option = Select.Option; function handleChange(value) { console.log(`selected ${value}`); } ReactDOM.render( , mountNode); ````