作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试遵循此线程,该线程建议解决 check indeterminate states .
我正在使用 ASP.NET,似乎单击处于不确定状态的复选框将取消选中它,并且不会触发任何事件(底层复选框实际上是“未选中”)。当我单击处于不确定状态的复选框时,我正在考虑让 Javascript 为我检查它(更喜欢这种方式的逻辑,这应该会触发我的 ASP.NET 事件)。
$(document).ready(function () {
$(".UndefinedCheckboxState :checkbox").prop("indeterminate", true);
$(":checkbox").click(function () {
if ($(this).prop("indeterminate")) {
$(this).prop("indeterminate", false);
$(this).prop("checked", true);
}
});
});
更新:点击事件工作正常,但if
中的条件永远不会为真!不过,我一直在不确定状态下单击复选框...
最佳答案
事实证明,如果单击的复选框具有不确定状态,则通过单击事件中的第一条指令,该属性已经消失。
我已经更换了我的逻辑来测试尚未消失的东西:
<script type="text/javascript">
$(document).ready(function() {
$(".UndefinedCheckboxState :checkbox").prop("indeterminate", true);
$(":checkbox").click(function () {
if ($(this).closest("span").hasClass("UndefinedCheckboxState")) {
$(this).prop("indeterminate", false);
$(this).prop("checked", true);
}
});
});
</script>
关于jquery - 如何将不确定复选框点击到 'checked' 状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16697597/
我是一名优秀的程序员,十分优秀!