aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/window/event/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/api/window/event/index.html')
-rw-r--r--files/ko/web/api/window/event/index.html52
1 files changed, 52 insertions, 0 deletions
diff --git a/files/ko/web/api/window/event/index.html b/files/ko/web/api/window/event/index.html
new file mode 100644
index 0000000000..d358167e58
--- /dev/null
+++ b/files/ko/web/api/window/event/index.html
@@ -0,0 +1,52 @@
+---
+title: Window.event
+slug: Web/API/Window/event
+tags:
+ - API
+ - DOM
+ - Event
+ - Property
+ - Read-only
+ - Reference
+ - Window
+ - 이벤트
+translation_of: Web/API/Window/event
+---
+<div>{{APIRef("DOM")}}</div>
+
+<p>{{domxref("Window")}} 객체의 <strong><code>event</code></strong> 속성은 웹 사이트의 코드가 현재 처리 중인 {{domxref("Event")}}를 반환합니다. 이벤트 처리기 바깥에서는 항상 {{jsxref("undefined")}}입니다.</p>
+
+<p>신규 코드에서는 사용을 피하세요. 대신, 처리기가 매개변수로 받는 {{domxref("Event")}}를 사용해야 합니다. <code>event</code> 속성은 많이 지원되지도 않고, 지원하는 환경에서도 나중에 문제가 발생할 여지를 키웁니다.</p>
+
+<div class="note">
+<p><strong>참고:</strong> <code>event</code> 속성이 반환하는 <code>Event</code>가 예상하는 값과 다른 경우가 많습니다. 게다가 {{Glossary("shadow tree", "섀도우 트리")}} 안에서 발생한 이벤트의 경우 정확하지 않습니다.</p>
+</div>
+
+<h2 id="명세">명세</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">Specification</th>
+ <th scope="col">Status</th>
+ <th scope="col">Comment</th>
+ </tr>
+ <tr>
+ <td>{{SpecName('DOM WHATWG', "#ref-for-dom-window-event", "Window.event")}}</td>
+ <td>{{Spec2('DOM WHATWG')}}</td>
+ <td>Initial definition.</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_Compatibility" name="Browser_Compatibility">브라우저 호환성</h2>
+
+
+
+<p>{{Compat("api.Window.event")}}</p>
+
+<h2 id="같이_보기">같이 보기</h2>
+
+<ul>
+ <li>{{domxref("Event.srcElement")}}</li>
+</ul>