mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
fb0b4f0fc9
* docs: add api first appearance * docs: fix auto-complete doc * docs: replace Version Added with Version * docs: date picker common method * docs: date picker common method * docs: tree * docs: remove meaningless 3.0.0
1.3 KiB
1.3 KiB
category | subtitle | type | title |
---|---|---|---|
Components | 开关 | 数据录入 | Switch |
开关选择器。
何时使用
- 需要表示开关状态/两种状态之间的切换时;
- 和
checkbox
的区别是,切换switch
会直接触发状态改变,而checkbox
一般用于状态标记,需要和提交操作配合。
API
参数 | 说明 | 类型 | 默认值 | 版本 |
---|---|---|---|---|
autoFocus | 组件自动获取焦点 | boolean | false | 3.2.2 |
checked | 指定当前是否选中 | boolean | false | |
checkedChildren | 选中时的内容 | string|ReactNode | ||
defaultChecked | 初始是否选中 | boolean | false | |
disabled | 是否禁用 | boolean | false | 3.2.2 |
loading | 加载中的开关 | boolean | false | |
size | 开关大小,可选值:default small |
string | default | |
unCheckedChildren | 非选中时的内容 | string|ReactNode | ||
onChange | 变化时回调函数 | Function(checked: boolean, event: Event) | ||
onClick | 点击时回调函数 | Function(checked: boolean, event: Event) | 3.13.0 | |
className | Switch 器类名 | string | - | 3.10.1 |
方法
名称 | 描述 | 版本 |
---|---|---|
blur() | 移除焦点 | |
focus() | 获取焦点 |