click, :
$('li').click(function(e) {
var isChecked = $(':checkbox:checked', this).length > 0;
console.log(isChecked);
e.stopPropagation();
});
<li>, , .
, , true, li, , . , , , . , , , true , .
, , for, :
<li>
<input id="myInput" type="checkbox" />
<label for="myInput">This is the label!</label>
</li>
, , .