Notice
Recent Posts
Recent Comments
Link
«   2025/06   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
Tags more
Archives
Today
Total
관리 메뉴

기록

자바스크립트 addEventListener로 글자색변경 본문

JAVASCRIPT&JQUERY

자바스크립트 addEventListener로 글자색변경

9400 2023. 9. 20. 15:33
const h1 = document.querySelector("div.hello:first-child h1");

function handleTitleClick(){
    const currentColor = h1.style.color; //getter개념 -변수가 가지는 의미에 따라서 나눠서 선언
    let newColor; //setter개념 -변수가 가지는 의미에 따라서 나눠서 선언
    if(currentColor === "blue"){
        newColor = "tomato";
    }else{
        newColor = "blue";
    }
    h1.style.color = newColor;
}

h1.addEventListener("click",handleTitleClick);

 

Comments