addEventListener와 toggle
2022. 4. 3. 23:41
자바스크립트
const title =documet.querySelector("#hello") const title = documnet.getElementById("hello") 쿼리셀렉터와 겟으로 id가 hello인녀석을 가져오는방법 버튼을 눌렀을때 색깔이 바뀌게 하고싶은 기능을 추가하고 싶다. 여러가지 방법이 있고 이코드를 아주 짧게 줄일수 있는 기능인 toggle에 대해서 알아보자 function handleTitleClick(){ const currntColor = h1.style.color; let newColor; if (currentColor ==="blue"){ newColor = "tomato"; } else { newColor = "blue" } title.addEventListener("click"..