0

如何li checkbox在 jquery 中获取检查状态。

我想要这个,但它让我不确定。

$('#ul'+$Id+' li:nth-child('+_index+') span input:checkbox').attr("checked") 

任何人都可以从这个中得到帮助。

4

2 回答 2

3

.is(':checked')在您的 jQuery 对象上使用。

$('#ul'+$Id+' li:nth-child('+_index+') span input:checkbox').is(':checked');
于 2013-03-26T08:59:45.193 回答
0

为什么在javascript中使用变量$id?_index 是变量吗?

您可以选中一个复选框,例如

$(selector).prop('checked', true);
$(selector).prop('checked', false);
$(selector).attr('checked','checked');
$(selector).removeAttr('checked');
alert($(selector).is(':checked'));
于 2013-03-26T09:04:21.657 回答