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

31 lines
646 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-06-09 21:16:59 +08:00
}
ReactDOM.render(
<div>
<Select defaultValue="lucy" style={{ width: 120 }} onChange={handleChange}>
<Option value="jack">Jack</Option>
<Option value="lucy">Lucy</Option>
<Option value="disabled" disabled>Disabled</Option>
<Option value="yiminghe">yiminghe</Option>
</Select>
<Select defaultValue="lucy" style={{ width: 120 }} disabled>
<Option value="lucy">Lucy</Option>
</Select>
</div>
, mountNode);
2015-06-09 21:16:59 +08:00
````