我需要检查一个检查箱的检查财产,并使用jQuery进行检查财产的操作。
例如,如果年龄检查框被检查,那么我需要显示一个文本框进入年龄,否则隐藏文本框。
但下列代码默认返回虚假:
如果($('#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"> 年龄 已选择 </div>
如何成功查询已检查的房地产?
如何成功查询已检查的房地产?
检查箱 DOM 元素的检查属性将为您提供检查元素的状态。
考虑到您的现有代码,您可以这样做:
if(document.getElementById('isAgeSelected').checked) {
$("#txtAge").show();
} else {
$("#txtAge").hide();
}
但是,有一个更方便的方式来做到这一点,使用Toggle:
$('#isAgeSelected').click(功能() { $("#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>
如果您的 HTML 标签是:
<input type="checkbox" />
特斯拉使用:
$(element).attr("checked"); // Will give you undefined as initial value of checkbox is not set
如果使用POP:
$(element).prop("checked"); // Will give you false whether or not initial value is set
2)如果您的HTML标签是:
<input type="checkbox" checked="checked" />// May be like this also checked="true"
特斯拉使用:
$(element).attr("checked") // Will return checked whether it is checked="true"
Prop 使用:
$(element).prop("checked") // Will return true whether checked="checked"
我进入了相同的问题,我有一个ASP.NET检查箱。
<asp:CheckBox ID="chkBox1" CssClass='cssChkBox1' runat="server" />
在 jQuery 代码中,我使用下面的选择器来检查检查检查箱是否已被检查,并且它似乎像一个魅力一样工作。
if ($("'.cssChkBox1 input[type=checkbox]'").is(':checked'))
{ ... } else { ... }
我相信你也可以使用 ID 而不是 CssClass,
if ($("'#cssChkBox1 input[type=checkbox]'").is(':checked'))
{ ... } else { ... }
我希望这能帮助你。