如何li checkbox
在 jquery 中获取检查状态。
我想要这个,但它让我不确定。
$('#ul'+$Id+' li:nth-child('+_index+') span input:checkbox').attr("checked")
任何人都可以从这个中得到帮助。
如何li checkbox
在 jquery 中获取检查状态。
我想要这个,但它让我不确定。
$('#ul'+$Id+' li:nth-child('+_index+') span input:checkbox').attr("checked")
任何人都可以从这个中得到帮助。
.is(':checked')
在您的 jQuery 对象上使用。
$('#ul'+$Id+' li:nth-child('+_index+') span input:checkbox').is(':checked');
为什么在javascript中使用变量$id?_index 是变量吗?
您可以选中一个复选框,例如
$(selector).prop('checked', true);
$(selector).prop('checked', false);
$(selector).attr('checked','checked');
$(selector).removeAttr('checked');
alert($(selector).is(':checked'));