我的每个元素都有 IsAnabled 和 IsDeafult。如果 IsDefault = true,则应禁用该复选框。
当我这样做时,它会起作用,除了我想要“启用”的相反效果:
<input type="checkbox" data-bind="checked: IsEnabled, enable: IsDefault" />
我试过了:
<input type="checkbox" data-bind="checked: IsEnabled, enable: !IsDefault" />
<input type="checkbox" data-bind="checked: IsEnabled, enable: IsDefault == 'false'" />
<input type="checkbox" data-bind="checked: IsEnabled, enable: IsDefault != 'true'" />
<input type="checkbox" data-bind="checked: IsEnabled, enable: IsDefault != true" />
<input type="checkbox" data-bind="checked: IsEnabled, enable: IsDefault == '0'" />
但仍然没有运气...