evnet handlers
evnet handlers
์ด๋ฒคํธ๋ ์น์ฌ์ดํธ์์ ๋ฐ์ํ๋ ๊ฒ๋ค์ ์๋ฏธํจ
const title = document.querySelector("title");
function handle(){
title.style.color = "blue"
}
title.addEventListener("click",hadle); // ํด๋ฆญํ์๋ ๊ธ์ ์์์ด ๋ณ๊ฒฝ
//์ด๋ฒคํธ ์์ ๋ค๋ฃฐ ํจ์๋ฅผ ๋ฃ์ด์ค
Last updated
Was this helpful?