---
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';
const { Option } = Select;
const children: React.ReactNode[] = [];
for (let i = 10; i < 36; i++) {
children.push();
}
const handleChange = (value: string[]) => {
console.log(`selected ${value}`);
};
const App: React.FC = () => (
<>
>
);
export default App;
```