Snippet1 특정 버튼들의 클릭 이벤트 리스너 let btns = document.querySelectorAll(".progress-btn"); btns.forEach(function(btn){ btn.addEventListener("click", (e) => { console.log(e); }) }); 쿼리 셀렉터를 이용해 버튼의 배열을 변수에 담은 뒤, forEach를 이용해서 하나씩 이벤트 리스닝을 한다. 참고) https://javacpro.tistory.com/37 2021. 7. 7. 이전 1 다음