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

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style>
		#button{
			width: 150px;
			border: 1px solid gray;
			background-color: red;
		}
	</style>
</head>
<body>
<textarea id='message' placeholder='hello!'></textarea>
<div id='button'>Send</div>
	<script>
	document.querySelector('#message').onkeypress=e=>document.querySelector('#button').style.backgroundColor = 'green';
	</script>
</body>
</html>
Ответить с цитированием