--- order: 1 title: zh-CN: 带搜索框 en-US: Select with search field --- ## zh-CN 展开后可对选项进行搜索。 ## en-US Search the options while expanded. ```tsx import { Select } from 'antd'; import React from 'react'; const { Option } = Select; const onChange = (value: string) => { console.log(`selected ${value}`); }; const onSearch = (value: string) => { console.log('search:', value); }; const App: React.FC = () => ( ); export default App; ```