ant-design/components/switch/index.md

28 lines
919 B
Markdown
Raw Normal View History

2015-06-25 19:55:15 +08:00
# Switch
- category: Components
- chinese: 开关
2015-08-22 20:16:24 +08:00
- type: 表单
2015-06-25 19:55:15 +08:00
---
2015-08-10 15:33:46 +08:00
开关选择器。
2015-06-25 19:55:15 +08:00
2015-06-26 14:42:30 +08:00
## 何时使用
2015-06-25 19:55:15 +08:00
2015-06-26 14:42:30 +08:00
- 需要表示开关状态/两种状态之间的切换时;
-`checkbox `的区别是,切换 `switch` 会直接触发状态改变,而 `checkbox` 一般用于状态标记,需要和提交操作配合。
2015-07-08 19:47:45 +08:00
## API
### Switch
| 参数 | 说明 | 类型 | 可选值 |默认值 |
|-----------|------------------------------------------|------------|-------|--------|
2015-12-06 17:14:06 +08:00
| checked | 指定当前是否选中 | boolean | | false |
| defaultChecked | 初始是否选中 | boolean | | false |
| onChange | 变化时回调函数 | Function(checked:boolean) | | |
| checkedChildren | 选中时的内容 | React Node | | |
| unCheckedChildren | 非选中时的内容 | React Node | | |
| size | 开关大小 | string | 'default' or 'small' | 'default' |