DOCTYPE html> Insert title here * { margin: 5px; padding: 5px; border: 3px solid black; } function func1 (e) { var a = e.target; // a태그, 이벤트타겟(소스) a.style.backgroundColor = 'blue'; // 하이퍼링크 기능 막기 // return false; e.preventDefault(); // 이벤트 전파막기(버블단계. 자식->부모) e.stopPropagation(); } function func2 (h1) { h1.style.backgroundColor = 'red'; } 네이버 DOCTYPE html> Insert title here function init() { var ..