<button type="submit" class="submit-button" id="button">Отправить</button> HTML <button type="submit" class="submit-button" id="button">Отправить</button> const audio = new Audio('media/ловушка.mp3'); const button = document.querySelector('#button'); button.addEventListener('click', () => { audio.play(); }); JS const audio = new Audio('media/ловушка.mp3'); const button = document.querySelector('#button'); button.addEventListener('click', () => { audio.play(); });