Сообщение от ваый
|
Для пустой выборки приведение к булеву типу все равно даст true.
|
то есть, если не будет ни одного элемента, то все равно true ?
ошибаешься:
<input type="checkbox" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script>
$('input:checkbox').click(function() {
if ($('input:checked').length)
$('body').css({backgroundColor: 'red'});
else
$('body').css({backgroundColor: 'white'});
});
</script>