--- 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; function onChange(value) { console.log(`selected ${value}`); } function onSearch(val) { console.log('search:', val); } export default () => ( ); ```