Показать сообщение отдельно
  #1 (permalink)  
Старый 11.02.2022, 10:04
Интересующийся
Отправить личное сообщение для rita Посмотреть профиль Найти все сообщения от rita
 
Регистрация: 01.06.2020
Сообщений: 22

Показать блок, если все элементы другого скрыты
Как показать элемент id="show_box", если все элементы id="li_a" display="none". На данный момент если хотя бы один элемент display="block", элемент id="show_box" виден.

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
#show_box{
display:none;
}
</style>
</head>
<body>
<center>
   <div id="my_All">
   <li id="li_a" style="display:block">HELLO 1</li>
   <li id="li_a" style="display:none">HELLO 2</li>
   <li id="li_a" style="display:none">HELLO 3</li>
   </div>
   <div id="show_box" >Нужно показать!!!</div>
</center>
<script>
	var show_box=document.getElementById('show_box');
	show_box.style.color='blue';
	document.querySelectorAll('#my_All #li_a').forEach(function(el){
		if (el.style.display==='none')
		{show_box.style.display='block';
			console.log('HHH');
			}
		else{
			show_box.style.display='none';
			}
	})
</script>
</body>
</html>
Ответить с цитированием