aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/event/istrusted/index.md
diff options
context:
space:
mode:
authoralattalatta <urty5656@gmail.com>2021-12-09 20:29:30 +0900
committerhochan Lee <hochan049@gmail.com>2021-12-13 01:19:23 +0900
commit5b75c39cc1547ebfcb87691183b3aa859c3306b7 (patch)
tree5cea99dec0db189a2fe6869be0667f4d52248322 /files/ko/web/api/event/istrusted/index.md
parent43ddfdfa09be74789468d7f2b3afdf19c079cc39 (diff)
downloadtranslated-content-5b75c39cc1547ebfcb87691183b3aa859c3306b7.tar.gz
translated-content-5b75c39cc1547ebfcb87691183b3aa859c3306b7.tar.bz2
translated-content-5b75c39cc1547ebfcb87691183b3aa859c3306b7.zip
Rewrite/Update Event docs
Diffstat (limited to 'files/ko/web/api/event/istrusted/index.md')
-rw-r--r--files/ko/web/api/event/istrusted/index.md60
1 files changed, 15 insertions, 45 deletions
diff --git a/files/ko/web/api/event/istrusted/index.md b/files/ko/web/api/event/istrusted/index.md
index afce93c401..46afd25b2c 100644
--- a/files/ko/web/api/event/istrusted/index.md
+++ b/files/ko/web/api/event/istrusted/index.md
@@ -2,60 +2,30 @@
title: Event.isTrusted
slug: Web/API/Event/isTrusted
tags:
- - API
- - Event
- Property
- Read-only
- Reference
- - 속성
- - 이벤트
+browser-compat: api.Event.isTrusted
translation_of: Web/API/Event/isTrusted
---
-<div>{{APIRef("DOM")}}</div>
+{{APIRef("DOM")}}
-<p>{{domxref("Event")}} 인터페이스의 읽기 전용 속성인 <strong><code>isTrusted</code></strong>는, 이벤트가 사용자 행위에 의하여 발생되었으면 <code>true</code>이고 이벤트가 스크립트로 인해 생성 또는 수정되었거나 <code>dispatchEvent</code>를 통해 보내졌으면 <code>false</code>인 논리 값입니다. 이것이 <code>true</code>인 이벤트는 <strong>신뢰된다</strong>고 표현합니다.</p>
+{{domxref("Event")}} 인터페이스의 **`isTrusted`** 읽기 전용 속성은 사용자 액션에 의해 생성된 이벤트에서는 `ture`, 스크립트에서 생성 또는 수정했거나 {{domxref("EventTarget.dispatchEvent()")}}로 발송한 이벤트의 경우 `false`인 불리언 값입니다.
-<h2 id="Syntax" name="Syntax">구문</h2>
+## 예제
-<pre class="syntaxbox">var bool = event.isTrusted;
-</pre>
+```js
+if (e.isTrusted) {
+ // 신뢰할 수 있는 이벤트
+} else {
+ // 신뢰 불가능한 이벤트
+}
+```
-<h2 id="예제">예제</h2>
+## 명세
-<pre> if(event.isTrusted)
- {
- // 이 이벤트는 신뢰됩니다.
- }
- else
- {
- // 이 이벤트는 신뢰되지 않습니다.
- }
-</pre>
+{{Specifications}}
-<h2 id="명세">명세</h2>
+## 브라우저 호환성
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">명세</th>
- <th scope="col">상태</th>
- <th scope="col">비고</th>
- </tr>
- <tr>
- <td>{{SpecName('DOM WHATWG', '#dom-event-istrusted', 'Event.isTrusted')}}</td>
- <td>{{ Spec2('DOM WHATWG') }}</td>
- <td> </td>
- </tr>
- <tr>
- <td>{{SpecName('DOM3 Events', '#trusted-events', 'Trusted events')}}</td>
- <td>{{Spec2('DOM3 Events')}}</td>
- <td>이벤트가 신뢰되기 위한 요건을 추가하였으나 <code>isTrusted</code> 속성을 정의하지는 않았습니다.</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="브라우저_호환성">브라우저 호환성</h2>
-
-
-
-<p>{{Compat("api.Event.isTrusted")}}</p>
+{{Compat}}