--- order: 1 title: zh-CN: 带搜索框 en-US: Select with search field --- ## zh-CN 展开后可对选项进行搜索。 ## en-US Search the options while expanded. ````jsx import { Select } from 'antd'; const Option = Select.Option; function handleChange(value) { console.log(`selected ${value}`); } function handleBlur() { console.log('blur'); } function handleFocus() { console.log('focus'); } ReactDOM.render( , mountNode); ````