作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当 SelectAllActiveEnabled
为真时,复选框可点击且 css 光标值为指针。当 SelectAllActiveEnabled
评估为 false 时,复选框不可点击,但 css 光标值仍然是指针。如何将其设置为不允许?
<label>
<input type="checkbox" data-bind="checked: selectAllActiveReleases, enable: SelectAllActiveEnabled" />
@Html.GetTranslation(Center.Infrastructure.TranslationSources.Center_Web_Orders_ReleaseFull_ReleaseOverview_LabelSelectAllActiveReleases)
</label>
最佳答案
如果您正在寻找“纯粹的 knockout ”解决方案,您应该像这样使用 style
绑定(bind):
<input type="checkbox" data-bind="checked: selectAllActiveReleases, enable: SelectAllActiveEnabled, style:{'cursor': cursorForCheckbox()}" />
您必须将 cursorForCheckbox
引入您的 View 模型。像这样:
self.cursorForCheckbox = ko.pureComputed(function() {return self.SelectAllActiveEnabled() ? 'pointer' : 'not-allowed';});
关于html - 将 knockout 复选框标签 css-cursor 从指针设置为不允许,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47510798/
我是一名优秀的程序员,十分优秀!