From 47b5dfa31a7e5d56f48d7aa9552d3af54e056488 Mon Sep 17 00:00:00 2001 From: hochan Lee Date: Sun, 1 Aug 2021 16:48:32 +0900 Subject: [ko] target sync (#1630) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * refactor: target code sync * docs: sync specification * feat: Compatibility_notes 번역 * fix: browser compat * feat: Section Title --- files/ko/web/api/event/target/index.html | 75 +++++++++++++++++--------------- 1 file changed, 40 insertions(+), 35 deletions(-) diff --git a/files/ko/web/api/event/target/index.html b/files/ko/web/api/event/target/index.html index 02fbdd8726..1fa5ad467e 100644 --- a/files/ko/web/api/event/target/index.html +++ b/files/ko/web/api/event/target/index.html @@ -11,17 +11,17 @@ translation_of: Web/API/Event/target ---

{{ApiRef("DOM")}}

-

{{domxref("Event")}} interface의 target 속성은  event가 전달한 객체에 대한 참조입니다. 이는 이벤트의 버블링 또는 캡처 단계에서 이벤트 핸들러를 호출하는 {{domxref("Event.currentTarget")}}와 다릅니다.

+

{{domxref("Event")}} interface의 target 속성은 event가 전달한 객체에 대한 참조입니다. 이는 이벤트의 버블링 또는 캡처 단계에서 이벤트 핸들러를 호출하는 {{domxref("Event.currentTarget")}}와 다릅니다.

-

Syntax

+

구문

-
theTarget = event.target
+
const theTarget = someEvent.target

Value

{{domxref("EventTarget")}}

-

Example

+

예제

event.target 속성을 사용하여 event delegation을 구현할 수 있습니다.

@@ -45,51 +45,56 @@ function hide(e){ ul.addEventListener('click', hide, false); -

Specifications

+

명세

- - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName("DOM WHATWG", "#dom-event-target", "Event.target")}}{{Spec2("DOM WHATWG")}}
{{SpecName("DOM4", "#dom-event-target", "Event.target")}}{{Spec2("DOM4")}}
{{SpecName("DOM2 Events", "#Events-Event-target", "Event.target")}}{{Spec2("DOM2 Events")}}Initial definition
SpecificationStatusComment
{{SpecName("DOM WHATWG", "#dom-event-target", "Event.target")}}{{Spec2("DOM WHATWG")}}
{{SpecName("DOM4", "#dom-event-target", "Event.target")}}{{Spec2("DOM4")}}
{{SpecName("DOM2 Events", "#Events-Event-target", "Event.target")}}{{Spec2("DOM2 Events")}}Initial definition
-

Browser compatibility

- - +

브라우저 호환성

{{Compat("api.Event.target")}}

-

Compatibility notes

+

호환성 참고

+ +

IE 6–8에서는 이벤트 모델이 다릅니다. 이벤트 리스너는 비표준 + {{domxref('EventTarget.attachEvent()')}} 메서드로 연결됩니다.

-

On IE 6-8 the event model is different. Event listeners are attached with the non-standard {{domxref('EventTarget.attachEvent')}} method. In this model, the event object has a {{domxref('Event.srcElement')}} property, instead of the target property, and it has the same semantics as event.target.

+

이 모델에서 이벤트 객체는 {{domxref('Event.srcElement')}} 속성 + (target 속성 대신)을 가지며 Event.target과 + 동일한 의미를 갖습니다.

-
function hide(e) {
+
function hide(evt) {
   // Support IE6-8
-  var target = e.target || e.srcElement;
+  var target = evt.target || evt.srcElement;
   target.style.visibility = 'hidden';
 }
 
-

See also

+

같이 보기