gpt4 book ai didi

html - 自定义复选框问题

转载 作者:太空宇宙 更新时间:2023-11-03 21:46:28 24 4
gpt4 key购买 nike

我使用教程开发了一个自定义复选框。代码如下。

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 应该相同

关于html - 自定义复选框问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20391976/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com