你是否可以检查一个隐藏的复选框,如果它也是隐藏的直接父项?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了你是否可以检查一个隐藏的复选框,如果它也是隐藏的直接父项?相关的知识,希望对你有一定的参考价值。
我想根据相关事件检查并取消选中隐藏的html复选框。
不幸的是,当我尝试这样做,我看看firefox和chrome中的开发工具。这似乎不可能。
我正在使用jQuery来检查并取消选中隐藏的复选框。我只能在显示复选框时才能这样做。
谢谢
答案
它只是工作,但它的属性checked
将不会在devtool中显示,你可以使用console.log()
测试复选框是否被选中
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
#hiddenbox,
#hiddenBox {
visibility: hidden;
}
</style>
</head>
<body>
<button id="button1">click</button>
<div id="hiddendiv">
<input id="hiddenbox" type="checkbox">
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$('#button1').on('click', function () {
$('#hiddenbox').prop('checked', true);
console.log($('#hiddenbox').prop('checked'));
});
</script>
</body>
</html>
另一答案
一种方法是使用visibility:hidden
隐藏你的复选框或使用opacity:0
,你也可以使用display:none
,然后你可以检查它是否被检查
在下面的代码片段中,我使用Jquery隐藏显示时以编程方式选中了复选框,然后测试是否选中了复选框
$("button").on("click",()=>{
$('input').prop('checked', true);
if($('input').is(':checked')){
console.log("checked")
}
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="checkbox" style="display:none">
<button>Check the hidden checkbox</button>
以上是关于你是否可以检查一个隐藏的复选框,如果它也是隐藏的直接父项?的主要内容,如果未能解决你的问题,请参考以下文章