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