note

이벤트 핸들러 안에서 this 키워드 본문

JavaScript/기본

이벤트 핸들러 안에서 this 키워드

투한 2012. 3. 16. 10:53














<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script>
	window.onload = function (){
		document.getElementById('header').onclick = function(){
			alert(this);
		};
	};
</script>
</head>
<body>
	<h1 id='header'>Click</h1>
</body>
</html>

이벤트 핸들러 안에서 this키워드를 사용하면 이벤트가 발생한 객체를 찾을 수 있습니다





'JavaScript > 기본' 카테고리의 다른 글

이벤트 객체  (0) 2012.03.16
이벤트 발생 객체의 스타일 변경  (0) 2012.03.16
이벤트 용어  (0) 2012.03.16
현재 시간 표시  (0) 2012.03.16
문서 객체에 스타일 적용  (0) 2012.03.16