我正在加载页面时检索记录,并根据其值选中复选框,例如:
<div className="col-xs-12 col-sm-4 col-md-3 ">
<input type="checkbox" key={item.AttributeID} checked="checked" name={"Value" + item.AttributeID} className={classs} onClick={() => that.selectCheckBox(value) } />
<label>{item.AttributeName}</label>
</div>
该复选框已选中并且工作正常,现在在 UI 上我无法取消选中该复选框:
if (item.IsChecked == true) { subControlAttributesRows.push( that.selectCheckBox(value) } /> {item.AttributeName}); }