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

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
</head>
<body>
	<div class=test>
		<input id='inTest'>
		<button type='button' id='add'>Отправить</button>
	</div>
	<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
	<script>
		$('#add').on('click', function(){
			alert($('#inTest').val());
		});
	</script>
</body>
</html>


и вообще если есть id можно обращаться напрямую
Ответить с цитированием