event.target
event.target
설명 : 이벤트를 시작한 DOM 요소입니다.
이 target속성은 이벤트 또는 그 이벤트의 자손에 대해 등록 된 요소가 될 수 있습니다. 이벤트 버블 링으로 인해 이벤트가 처리되고 있는지를 판별하기 위해 를 비교 event.target하는 것이 종종 유용합니다 this. 이 속성은 이벤트 위임에 매우 유용합니다.
예 :
클릭시 태그 이름 표시
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>event.target demo</title>
<style>
span, strong, p {
padding: 8px;
display: block;
border: 1px solid #999;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<div id="log"></div>
<div>
<p>
<strong><span>click</span></strong>
</p>
</div>
<script>
$( "body" ).click(function( event ) {
$( "#log" ).html( "clicked: " + event.target.nodeName );
});
</script>
</body>
</html>
게시판 목록
개발자팁
개발과 관련된 유용한 정보를 공유하세요.
질문은 QA에서 해주시기 바랍니다.
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 4556 | jQuery |
프로그래머7
|
8년 전 | 1690 | |
| 4555 | jQuery |
프로그래머7
|
8년 전 | 1606 | |
| 4554 | jQuery |
프로그래머7
|
8년 전 | 1660 | |
| 4553 | jQuery |
프로그래머7
|
8년 전 | 2040 | |
| 4552 | PHP | 8년 전 | 1879 | ||
| 4551 | PHP | 8년 전 | 1464 | ||
| 4550 | PHP | 8년 전 | 1706 | ||
| 4549 | jQuery |
프로그래머7
|
8년 전 | 2743 | |
| 4548 | jQuery |
프로그래머7
|
8년 전 | 1439 | |
| 4547 | jQuery |
프로그래머7
|
8년 전 | 1365 | |
| 4546 | jQuery |
프로그래머7
|
8년 전 | 1683 | |
| 4545 | jQuery |
프로그래머7
|
8년 전 | 1709 | |
| 4544 | jQuery |
프로그래머7
|
8년 전 | 1862 | |
| 4543 | jQuery |
프로그래머7
|
8년 전 | 1651 | |
| 4542 | jQuery |
프로그래머7
|
8년 전 | 1583 | |
| 4541 | jQuery |
프로그래머7
|
8년 전 | 1632 | |
| 4540 | jQuery |
프로그래머7
|
8년 전 | 1665 | |
| 4539 | jQuery |
프로그래머7
|
8년 전 | 1862 | |
| 4538 | jQuery |
프로그래머7
|
8년 전 | 1535 | |
| 4537 | jQuery |
프로그래머7
|
8년 전 | 1695 | |
| 4536 | jQuery |
프로그래머7
|
8년 전 | 1933 | |
| 4535 | jQuery |
프로그래머7
|
8년 전 | 1519 | |
| 4534 | jQuery |
프로그래머7
|
8년 전 | 1854 | |
| 4533 | jQuery |
프로그래머7
|
8년 전 | 2342 | |
| 4532 | jQuery |
프로그래머7
|
8년 전 | 1913 | |
| 4531 | PHP |
|
8년 전 | 3706 | |
| 4530 | jQuery |
프로그래머7
|
8년 전 | 1799 | |
| 4529 | jQuery |
프로그래머7
|
8년 전 | 1898 | |
| 4528 | jQuery |
프로그래머7
|
8년 전 | 1694 | |
| 4527 | jQuery |
|
8년 전 | 2695 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기