aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/document/keydown_event/index.html
blob: 4a5da111689c4d2ebaaabf82fb4ed1ea541d5c3f (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
---
title: 'Document: keydown イベント'
slug: Web/API/Document/keydown_event
tags:
  - API
  - DOM
  - Document
  - Event
  - KeyboardEvent
  - Reference
  - keydown
translation_of: Web/API/Document/keydown_event
---
<div>{{APIRef}}</div>

<p><strong><code>keydown</code></strong> イベントは、キーが押されたときに発生します。</p>

<p>{{domxref("Document/keypress_event", "keypress")}} イベントとは異なり、 <code>keydown</code> イベントはすべてのキーにおいて、文字が入力されるかどうかにかかわらず発生します。</p>

<table class="properties">
 <tbody>
  <tr>
   <th scope="row">バブリング</th>
   <td>あり</td>
  </tr>
  <tr>
   <th scope="row">キャンセル可能</th>
   <td>はい</td>
  </tr>
  <tr>
   <th scope="row">インターフェイス</th>
   <td>{{domxref("KeyboardEvent")}}</td>
  </tr>
  <tr>
   <th scope="row">イベントハンドラープロパティ</th>
   <td>{{domxref("GlobalEventHandlers.onkeydown", "onkeydown")}}</td>
  </tr>
 </tbody>
</table>

<p><code>keydown</code> および {{domxref("Document/keyup_event", "keyup")}} イベントが、どのキーが押されたのかを示すコードを提供するのに対し、 {{domxref("Document/keypress_event", "keypress")}} はどの<em>文字</em>が入力されたかを示します。例えば、小文字の "a" は <code>keydown</code> および <code>keyup</code> では65になるのに対し、 <code>keypress</code> では97になります。大文字の "A" はどのイベントでも65と報告されます。</p>

<p>Firefox 65 から、 <code>keydown</code> および {{domxref("Document/keyup_event", "keyup")}} イベントは IME 入力中でも発生するようになり、 CJKT のユーザーのブラウザー間の互換性が向上しました ({{bug(354358)}})。 IME 入力中のすべての <code>keydown</code> イベントを無視するには、次のようにします (229 は IME によって処理されたイベントに関連する <code>keyCode</code> の特殊な値のセットです)。</p>

<pre class="brush: js">eventTarget.addEventListener("keydown", event =&gt; {
  if (event.isComposing || event.keyCode === 229) {
    return;
  }
  // 何かをする
});
</pre>

<h2 id="Examples" name="Examples"></h2>

<h3 id="addEventListener_keydown_example" name="addEventListener_keydown_example">addEventListener keydown の例</h3>

<p>この例はキーを押すたびに {{domxref("KeyboardEvent.code")}} の値をログ出力します。</p>

<pre class="brush: html">&lt;p&gt;Focus the IFrame first (e.g. by clicking in it), then try pressing some keys.&lt;/p&gt;
&lt;p id="log"&gt;&lt;/p&gt;</pre>

<pre class="brush: js">document.addEventListener('keydown', logKey);

function logKey(e) {
  log.textContent += ` ${e.code}`;
}</pre>

<p>{{EmbedLiveSample("addEventListener_keydown_example")}}</p>

<h3 id="onkeydown_equivalent" name="onkeydown_equivalent">onkeydown equivalent</h3>

<pre class="brush: js">document.onkeydown = logKey;</pre>

<h2 id="Specifications" name="Specifications">仕様書</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">仕様書</th>
   <th scope="col">状態</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('UI Events', '#event-type-keydown')}}</td>
   <td>{{Spec2('UI Events')}}</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>

<p>{{Compat("api.Document.keydown_event")}}</p>

<h2 id="See_also" name="See_also">関連情報</h2>

<ul>
 <li>{{domxref("Document/keypress_event", "keypress")}}</li>
 <li>{{domxref("Document/keyup_event", "keyup")}}</li>
 <li>{{domxref("Element")}} の {{domxref("Element/keydown_event", "keydown")}} イベント</li>
</ul>