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

29 lines
662 B
Markdown
Raw Normal View History

2015-06-09 21:16:59 +08:00
# 基本使用
2015-05-16 15:03:33 +08:00
2015-06-02 18:15:32 +08:00
- order: 0
2015-06-16 14:54:31 +08:00
基本使用。
2015-05-16 15:03:33 +08:00
---
2015-06-09 21:16:59 +08:00
````jsx
import { Select } from 'antd';
const Option = Select.Option;
2015-06-09 21:16:59 +08:00
function handleChange(value) {
console.log('selected ' + value);
}
2015-12-02 15:31:25 +08:00
ReactDOM.render(<div>
2015-11-05 17:49:47 +08:00
<Select defaultValue="lucy" style={{width:120}} onChange={handleChange}>
<Option value="jack">Jack</Option>
<Option value="lucy">Lucy</Option>
<Option value="disabled" disabled>Disabled</Option>
2015-06-14 17:26:31 +08:00
<Option value="yiminghe">yiminghe</Option>
</Select>
2015-12-02 15:31:25 +08:00
<Select defaultValue="lucy" style={{width:120}} disabled>
<Option value="lucy">Lucy</Option>
</Select>
</div>, document.getElementById('components-select-demo-basic'));
2015-06-09 21:16:59 +08:00
````