我使用教程开发了一个自定义复选框。代码如下。
fiddle
Fiddel
HTML
<input type="checkbox" name="checkboxG1" id="checkboxG1" class="css-checkbox" />
<label for="checkboxG1" class="css-label"></label>
CSS
input[type=checkbox].css-checkbox {
display:none;
}
input[type=checkbox].css-checkbox + label.css-label {
padding-right: 20px;
height: 14px;
display: inline-block;
line-height: 14px;
background-repeat: no-repeat;
background-position: 0px 0;
font-size: 14px;
vertical-align: middle;
cursor: pointer;
}
input[type=checkbox].css-checkbox:checked + label.css-label {
background-position: 0px -14px;
}
label.css-label {
background-image:url(http://csscheckbox.com/checkboxes/u/csscheckbox_39e0df4737b77a2ca4a672a70ec70e86.png);
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
我正在尝试将上述 css 插入到我现有的应用程序中,其中 Controller 使用高度自定义。
HTML
<input type="checkbox" id="chkincShowCancel" class="css-checkbox" name="incShowCancel" checkedValue="1" onclick="this.value = (this.checked==true ? 1 : 0)" style="border: 0;"/>
<label for="checkbox" class="css-label"></label>
但是选中/未选中的更改不会受到 css 的影响。对此有任何帮助。
把你的标签改成这个
<label for="chkincShowCancel" class="css-label"></label>
复选框的
id
和标签的 for
应该相同
我是一名优秀的程序员,十分优秀!