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

38 lines
628 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.
2015-06-16 14:54:31 +08:00
````jsx
import { Select } from 'antd';
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
}
2015-10-20 16:47:55 +08:00
ReactDOM.render(
<Select
showSearch
style={{ width: 200 }}
placeholder="Select a person"
optionFilterProp="children"
onChange={handleChange}
>
<Option value="jack">Jack</Option>
<Option value="lucy">Lucy</Option>
<Option value="tom">Tom</Option>
2015-06-16 14:54:31 +08:00
</Select>
, mountNode);
2015-06-16 14:54:31 +08:00
````