--- order: 2 title: zh-CN: 多选 en-US: multiple selection --- ## zh-CN 多选,从已有条目中选择。 ## en-US Multiple selection, selecting from existing items. ```tsx import { Select } from 'antd'; import React from 'react'; import type { SelectProps } from 'antd'; const options: SelectProps['options'] = []; for (let i = 10; i < 36; i++) { options.push({ label: i.toString(36) + i, value: i.toString(36) + i, }); } const handleChange = (value: string[]) => { console.log(`selected ${value}`); }; const App: React.FC = () => ( <> ); export default App; ```