You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
578 B
26 lines
578 B
10 years ago
|
# 带搜索框
|
||
|
|
||
|
- order: 1
|
||
|
|
||
|
在浮层内顶部有搜索框的单项选择器。
|
||
|
|
||
|
---
|
||
|
|
||
|
````jsx
|
||
|
var Select = antd.Select;
|
||
|
var Option = Select.Option;
|
||
|
|
||
|
function handleChange(value) {
|
||
|
console.log('selected ' + value);
|
||
|
}
|
||
|
|
||
|
React.render(
|
||
|
<Select value="lucy" showSearch={true} style={{width:200}} onChange={handleChange}>
|
||
|
<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'));
|
||
|
````
|