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

28 lines
619 B
Markdown
Raw Normal View History

2015-06-16 14:54:31 +08:00
# 带搜索框
- order: 1
在浮层内顶部有搜索框的单项选择器。
---
````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-10-20 16:47:55 +08:00
ReactDOM.render(
2015-11-25 17:47:55 +08:00
<Select defaultValue="lucy" showSearch style={{width:200}}
2015-09-17 19:31:52 +08:00
searchPlaceholder="输入"
onChange={handleChange}>
2015-06-16 14:54:31 +08:00
<Option value="jack">jack</Option>
<Option value="lucy">lucy</Option>
<Option value="disabled" disabled>disabled</Option>
<Option value="yiminghe">yiminghe</Option>
</Select>
, document.getElementById('components-select-demo-search'));
````