ant-design/components/select/demo/search.md

51 lines
891 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 1
title:
2016-07-10 08:55:43 +08:00
zh-CN: 带搜索框
en-US: Select with search field
2016-03-31 09:40:55 +08:00
---
2015-06-16 14:54:31 +08:00
2016-07-10 08:55:43 +08:00
## zh-CN
2016-04-27 18:07:48 +08:00
展开后可对选项进行搜索。
2015-06-16 14:54:31 +08:00
2016-07-10 08:55:43 +08:00
## en-US
2016-07-10 08:55:43 +08:00
Search the options while expanded.
2017-02-13 10:55:53 +08:00
````jsx
import { Select } from 'antd';
2018-06-27 15:55:04 +08:00
const Option = Select.Option;
2015-06-16 14:54:31 +08:00
function handleChange(value) {
console.log(`selected ${value}`);
2015-06-16 14:54:31 +08:00
}
function handleBlur() {
console.log('blur');
}
function handleFocus() {
console.log('focus');
}
2015-10-20 16:47:55 +08:00
ReactDOM.render(
<Select
showSearch
style={{ width: 200 }}
placeholder="Select a person"
optionFilterProp="children"
onChange={handleChange}
onFocus={handleFocus}
onBlur={handleBlur}
2017-06-09 15:21:01 +08:00
filterOption={(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0}
>
<Option value="jack">Jack</Option>
<Option value="lucy">Lucy</Option>
<Option value="tom">Tom</Option>
2018-06-27 15:55:04 +08:00
</Select>,
2018-11-28 15:00:03 +08:00
mountNode
);
2015-06-16 14:54:31 +08:00
````