blob: afce93c4015f51421a1ed9009d7c7d5ef134d1d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
---
title: Event.isTrusted
slug: Web/API/Event/isTrusted
tags:
- API
- Event
- Property
- Read-only
- Reference
- 속성
- 이벤트
translation_of: Web/API/Event/isTrusted
---
<div>{{APIRef("DOM")}}</div>
<p>{{domxref("Event")}} 인터페이스의 읽기 전용 속성인 <strong><code>isTrusted</code></strong>는, 이벤트가 사용자 행위에 의하여 발생되었으면 <code>true</code>이고 이벤트가 스크립트로 인해 생성 또는 수정되었거나 <code>dispatchEvent</code>를 통해 보내졌으면 <code>false</code>인 논리 값입니다. 이것이 <code>true</code>인 이벤트는 <strong>신뢰된다</strong>고 표현합니다.</p>
<h2 id="Syntax" name="Syntax">구문</h2>
<pre class="syntaxbox">var bool = event.isTrusted;
</pre>
<h2 id="예제">예제</h2>
<pre> if(event.isTrusted)
{
// 이 이벤트는 신뢰됩니다.
}
else
{
// 이 이벤트는 신뢰되지 않습니다.
}
</pre>
<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>
|