6

我正在用这个 css 创建一个自定义复选框:

input[type="checkbox"] {
    background: transparent;
    border: inherit;
    width: auto;
}
input[type=checkbox] {
    display: none;
}
input[type=checkbox] + input + label,
input[type=checkbox] + label,
div:not(#foo) > input[type=checkbox] + label,
div:not(#foo) > input[type=checkbox] + input + label {
    cursor: pointer;
    height: 16px;
    padding: 0 0 0 18px;
    background: transparent url(/assets/images/checkbox-unchecked.png) no-repeat left 3px;
}
input[type=checkbox]:checked + input + label,
input[type=checkbox]:checked + label,
div:not(#foo) > input[type=checkbox]:checked + label,
div:not(#foo) > input[type=checkbox]:checked + input + label {
    background: transparent url(/assets/images/checkbox-checked.png) no-repeat left 3px;
}
.ie6 input[type=checkbox],
.ie7 input[type=checkbox],
.ie8 input[type=checkbox] {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

这是我的 html 标记:

<div class="editor-label">
    <input class="check-box" data-val="true" id="Persistent" name="Persistent" type="checkbox" value="true" />
    <input name="Persistent" type="hidden" value="false" />
    <label for="Persistent">Keep me!</label>
</div>

input元素由in@Html.EditorFor(model => model.BooleanProp)创建Razor。除了在 Chrome 中,此代码工作正常。实际上在 Chrome 中,当我们点击复选框时,我们会在点击提交 bottun 后看到效果(我的意思是更改显示复选框的标签的背景图像是否已选中)。请问有什么想法吗?

更新

这是一个演示

4

1 回答 1

6

我相信 Webkit 在+伪选择器之后的链式选择器存在问题

将链式 ... + input + label选择器交换为... ~ label.

例如:

div:not(#foo) > input[type=checkbox] ~ label
于 2012-12-24T22:56:30.693 回答