Показать сообщение отдельно
  #2 (permalink)  
Старый 11.06.2018, 20:01
Аватар для j0hnik
Профессор
Отправить личное сообщение для j0hnik Посмотреть профиль Найти все сообщения от j0hnik
 
Регистрация: 01.12.2016
Сообщений: 3,650

<div class="line_buttom">       
		<select class="size_of_buttoms" name="child">
			<option value="0">0</option>
			<option value="1">1</option>
			<option value="2">2</option>
			<option value="3">3</option>
			<option value="4">4</option>
			<option value="5">5</option>
		</select>
		возраст
		<span class="size_of_buttoms">
			<input name="agechild[]" class="agechild" style="display: none;" type="text">
			<input name="agechild[]" class="agechild" style="display: none;" type="text">
			<input name="agechild[]" class="agechild" style="display: none;" type="text">
			<input name="agechild[]" class="agechild" style="display: none;" type="text">
			<input name="agechild[]" class="agechild" style="display: none;" type="text">
		</span>
	</div>


	<script>
		document.querySelector('.size_of_buttoms').onchange = e => document.querySelectorAll('.agechild').forEach((el,i)=>el.style.display = i<+e.target.value?'block':'none');
	</script>
Ответить с цитированием