ant-design/components/select/demo/search.md
Marius Ileana ced5c9a9ed docs: select/demo/search.md - English translation (#3009)
English translation of labels.
2016-09-12 10:09:22 +08:00

659 B

order title
1
zh-CN en-US
带搜索框 Select with search field

zh-CN

展开后可对选项进行搜索。

en-US

Search the options while expanded.

import { Select } from 'antd';
const Option = Select.Option;

function handleChange(value) {
  console.log(`selected ${value}`);
}

ReactDOM.render(
  <Select showSearch
    style={{ width: 200 }}
    placeholder="Select a person"
    optionFilterProp="children"
    notFoundContent="Nothing found"
    onChange={handleChange}
  >
    <Option value="jack">Jack</Option>
    <Option value="lucy">Lucy</Option>
    <Option value="tom">Tom</Option>
  </Select>
, mountNode);