gpt4 book ai didi

html - 无法在 ASP.NET 中选中服务器控件复选框?

转载 作者:太空宇宙 更新时间:2023-11-04 07:27:29 25 4
gpt4 key购买 nike

我试图在我的元素中创建一个切换按钮,当我添加一个服务器控件复选框时,该复选框无法被选中,但是当我使用 html 控件并且该复选框可以被选中时,我错过了什么

<div class="material-switch ">
<asp:CheckBox ID="CheckBox1" runat="server" />
<label for="CheckBox1" class="label-primary" ></label>
</div>

Css Used

.material-switch > input[type="checkbox"] {
display: none;
}

.material-switch > label {
cursor: pointer;
height: 0px;
position: relative;
width: 40px;
}

.material-switch > label::before {
background: rgb(0, 0, 0);
box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
border-radius: 8px;
content: '';
height: 16px;
margin-top: -8px;
position:absolute;
opacity: 0.3;
transition: all 0.4s ease-in-out;
width: 40px;
}
.material-switch > label::after {
background: rgb(255, 255, 255);
border-radius: 16px;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
content: '';
height: 24px;
left: -4px;
margin-top: -8px;
position: absolute;
top: -4px;
transition: all 0.3s ease-in-out;
width: 24px;
}
.material-switch > input[type="checkbox"]:checked + label::before {
background: inherit;
opacity: 0.5;
}
.material-switch > input[type="checkbox"]:checked + label::after {
background: inherit;
left: 20px;
}

最佳答案

好的。我得到了它 !!!!!!!
我遇到这个问题是因为当控件呈现到网页时,复选框的 ID 发生变化......它附加了 ctl00_RightPlaceHolder_ 因为标签控件无法找到控件,因为它正在寻找具有此 ID 的控件“复选框 1”

所以我添加了 ClientIDMode="Static" 使 ID 静态

谢谢!!!!

关于html - 无法在 ASP.NET 中选中服务器控件复选框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49750733/

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