ant-design/components/checkbox/index.md
afc163 e14ee95e8f improve checkbox group
1. Add basic style
2. make it controlled component
3. code style
2015-12-25 11:48:59 +08:00

1.1 KiB

Checkbox

  • category: Components
  • chinese: 多选框
  • type: 表单

多选框。

何时使用

  • 需要表示开关状态/两种状态之间的切换时;
  • switch的区别是,切换 switch 会直接触发状态改变,而 checkbox 一般用于状态标记,需要和提交操作配合。

API

Checkbox

参数 说明 类型 可选值 默认值
checked 指定当前是否选中 boolean false
defaultChecked 初始是否选中 boolean false
onChange 变化时回调函数 Function(e:Event)

Checkbox Group

参数 说明 类型 可选值 默认值
defaultValue 默认选中的选项 array []
value 指定选中的选项 array []
options 指定可选项 array []
onChange 变化时回调函数 Function(checkedValue)