Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
<div class="inputs"> <input id="1"> <input id="2"> <input id="3"> </div>
.inputs
const parentContainer = document.querySelector(".inputs"); parentContainer.addEventListener("keypress", event => { if (event.target.tagName !== "INPUT") return; if (event.key !== "Enter") return; console.log(event.target.id); });
[...document.querySelectorAll('.inputs input')].forEach(input => { input.addEventListener('keypress', e => { console.log('Нажата клавиша в инпуте ' + input.id); }) });
// document.querySelectorAll('.inputs input').forEach(input => { ... }); input.addEventListener("keypress", (e) => { if (e.keyCode == 13) { e.preventDefault() } });