gpt4 book ai didi

JQuery .is :checked returns false every time

转载 作者:行者123 更新时间:2023-12-01 06:47:49 25 4
gpt4 key购买 nike

好吧,我已经摆弄这个问题近 40 分钟了……我到底做错了什么?

http://jsfiddle.net/aMhjJ/

 <input type="Checkbox" name="E1019" id="E1019" value="1">
<div id="result"></div>

Javascript:

$('#E1019').change(function () {

if ($('E1019').is(':checked')) {
$('#result').html('checked');
} else {
$('#result').html('unchecked');
}
});

问题已解决:if 语句中缺少 #:$('E1019') 应为 $('#E1019')

最佳答案

您已使用element selector而不是id selector - E109

前面缺少 #
if ($('#E1019').is(':checked')) {

演示:Fiddle

<小时/>

但是您也可以使用 dom 元素的 checked 属性

$('#E1019').change(function () {
if (this.checked) {
$('#result').html('checked');
} else {
$('#result').html('unchecked');
}
});

演示:Fiddle

关于JQuery .is :checked returns false every time,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21034295/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com