mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
46 lines
780 B
Markdown
46 lines
780 B
Markdown
---
|
|
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 () => (
|
|
<Select
|
|
showSearch
|
|
placeholder="Select a person"
|
|
optionFilterProp="children"
|
|
onChange={onChange}
|
|
onSearch={onSearch}
|
|
filterOption={(input, option) =>
|
|
option.children.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
}
|
|
>
|
|
<Option value="jack">Jack</Option>
|
|
<Option value="lucy">Lucy</Option>
|
|
<Option value="tom">Tom</Option>
|
|
</Select>
|
|
);
|
|
```
|