本文介绍了如何检查是否在 jQuery 中选中了复选框?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要检查复选框的 checked
属性,并使用 jQuery 根据已选中的属性执行操作.
例如,如果age
复选框被选中,那么我需要显示一个文本框来输入age
,否则隐藏文本框.
但是下面的代码默认返回false
:
if ($('#isAgeSelected').attr('checked')) {$("#txtAge").show();} 别的 {$("#txtAge").hide();}
<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">年龄已选择
如何成功查询checked
属性?
解决方案
复选框 DOM 元素的 checked
属性将为您提供元素的 checked
状态.
鉴于您现有的代码,您可以这样做:
if(document.getElementById('isAgeSelected').checked) {$("#txtAge").show();} 别的 {$("#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">年龄很重要</div>
I need to check the checked
property of a checkbox and perform an action based on the checked property using jQuery.
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 false
by default:
if ($('#isAgeSelected').attr('checked')) {
$("#txtAge").show();
} else {
$("#txtAge").hide();
}
<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 selected
</div>
How do I successfully query the checked
property?
解决方案
The checked
property of a checkbox DOM element will give you the checked
state of the element.
Given your existing code, you could therefore do this:
if(document.getElementById('isAgeSelected').checked) {
$("#txtAge").show();
} else {
$("#txtAge").hide();
}
However, there's a much prettier way to do this, using 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>
这篇关于如何检查是否在 jQuery 中选中了复选框?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!