React EasyUI 复选框
属性列表
名称 |
数据类型 |
作用描述 |
默认值 |
value |
string |
绑定到组件的值。 |
null |
values |
array |
当多行设置为true时,此属性是生效的。 |
null |
name |
string |
字段组的名称。 |
null |
disabled |
boolean |
是否禁用该字段。 |
false |
inputId |
string |
复选框的id属性值。 |
null |
multiple |
boolean |
True绑定多个值,而不是布尔值。 |
false |
事件列表
名称 |
参数 |
作用描述 |
onChange |
checked |
检查或未选中组件时触发。 |
注:
- 继承: FieldBase 。
使用方法
{
this.state.fruits.map(fruit => {
return (
<div key={fruit}>
<CheckBox inputId={fruit} multiple value={fruit} values={this.state.values}
onChange={this.handleChange.bind(this)}></CheckBox>
<Label htmlFor={fruit} style={{margin:'0 5px'}}>{fruit}</Label>
</div>
)
})
}