#3.6 – 3.8 event 직접
#3.6 const h1 = document.querySelector(“.hello h1:first-child”); function handleTitleClick(){ const currentColor = h1.style.color; let newColor; if(currentColor === “blue”){ newColor = “tomato”; }else{ newColor = “blue”; } h1.style.color = newColor; } h1.addEventListener(“click”, handleTitleClick); handleTitleClick 함수는 h1을 클릭하면 색상이 토마토와 파랑으로 바뀌는 함수입니다. 색상을 바꾸려면 현재 색상을 저장할 현재 색상과 새 색상을 저장할 새 색상 변수가 있어야 합니다. … Read more