问题描述
我需要检查一个复选框的选中的
属性,并使用jQuery执行基于checked属性的操作。
例如,如果选中年龄复选框,则需要显示一个文本框以输入年龄,否则隐藏文本框。
但是以下代码返回 false
默认情况下:
if($('#isAgeSelected')。 attr('checked')){
$(#txtAge)。show();
} else {
$(#txtAge)。hide();
}
如何成功查询检查
property?
复选框DOM元素的 鉴于您现有的代码,您可以这样做: 然而,有一个更漂亮的方法来做到这一点,使用: I need to check the For example, if the age checkbox is checked, then I need to show a textbox to enter age, else hide the textbox. But the following code returns How do I successfully query the The Given your existing code, you could therefore do this: However, there's a much prettier way to do this, using 这篇关于如何检查是否在jQuery中检查了一个复选框?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!检查
属性将为您提供 /> code code code
$ b
pre> if(document.getElementById('isAgeSelected')。checked){
$(#txtAge)。
} else {
$(#txtAge)。hide();
}
< script src = https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js\"></script><input type =checkboxid =isAgeSelected/>< ; div id =txtAgestyle =display:none>年龄是某事< / div>
checked
property of a checkbox and perform an action based on the checked property using jQuery.false
by default:if($('#isAgeSelected').attr('checked')) {
$("#txtAge").show();
} else {
$("#txtAge").hide();
}
checked
property?checked
property of a checkbox DOM element will give you the checked
state of the element.if(document.getElementById('isAgeSelected').checked) {
$("#txtAge").show();
} else {
$("#txtAge").hide();
}
toggle
:$('#isAgeSelected').click(function() {
$("#txtAge").toggle(this.checked);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="checkbox" id="isAgeSelected"/>
<div id="txtAge" style="display:none">Age is something</div>