blob: d2905b72d1d48dd1a9c3a18ae5d4457d0d8ef2ba (
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
102
103
104
105
|
---
title: 'Document: keyup イベント'
slug: Web/API/Document/keyup_event
tags:
- DOM
- Document
- Event
- KeyboardEvent
- Reference
- keyup
- イベント
translation_of: Web/API/Document/keyup_event
---
<div>{{APIRef}}</div>
<p><strong><code>keyup</code></strong> イベントは、キーが離されたときに発生します。</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.onkeyup", "onkeyup")}}</td>
</tr>
</tbody>
</table>
<p>{{domxref("Document/keydown_event", "keydown")}} および <code>keyup</code> イベントが、どのキーが押されたのかを示すコードを提供するのに対し、 {{domxref("Document/keypress_event", "keypress")}} はどの<em>文字</em>が入力されたかを示します。例えば、小文字の "a" は <code>keydown</code> および <code>keyup</code> では65になるのに対し、 <code>keypress</code> では97になります。大文字の "A" はどのイベントでも65と報告されます。</p>
<div class="blockIndicator note">
<p><strong>注:</strong> 入力値の変更に反応する方法を探しているのであれば、 <a href="/ja/docs/Web/API/HTMLElement/input_event"><code>input</code> イベント</a>を使用してください。 <code>keyup</code> では、テキスト入力のコンテキストニューからテキストを貼り付けた場合など、一部の変更が検出されません。</p>
</div>
<p>Firefox 65 から、 {{domxref("Document/keydown_event", "keydown")}} および <code>keyup</code> イベントは IME 入力中でも発生するようになり、 CJKT のユーザーのブラウザー間の互換性が向上しました ({{bug(354358)}}、またもっと有益な詳細は <a href="https://www.fxsitecompat.com/en-CA/docs/2018/keydown-and-keyup-events-are-now-fired-during-ime-composition/">keydown and keyup events are now fired during IME composition</a> を参照)。 IME 入力中のすべての <code>keyup</code> イベントを無視するには、次のようにします (229 は IME によって処理されたイベントに関連する <code>keyCode</code> の特殊な値のセットです)。</p>
<pre class="brush: js notranslate">eventTarget.addEventListener("keyup", event => {
if (event.isComposing || event.keyCode === 229) {
return;
}
// 何かをする
});
</pre>
<h2 id="Examples" name="Examples">例</h2>
<p>この例はキーを離すたびに {{domxref("KeyboardEvent.code")}} の値をログ出力します。</p>
<h3 id="addEventListener_keyup_example" name="addEventListener_keyup_example">addEventListener の keyup の例</h3>
<pre class="brush: html notranslate"><p>Focus the IFrame first (e.g. by clicking in it), then try pressing some keys.</p>
<p id="log"></p></pre>
<pre class="brush: js notranslate">const log = document.getElementById('log');
document.addEventListener('keyup', logKey);
function logKey(e) {
log.textContent += ` ${e.code}`;
}</pre>
<p>{{EmbedLiveSample("addEventListener_keyup_example")}}</p>
<h3 id="onkeyup_equivalent" name="onkeyup_equivalent">onkeyup を用いた同等のもの</h3>
<pre class="brush: js notranslate">document.onkeyup = 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-keyup")}}</td>
<td>{{Spec2("UI Events")}}</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.Document.keyup_event")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{domxref("Document/keydown_event", "keydown")}}</li>
<li>{{domxref("Document/keypress_event", "keypress")}}</li>
<li>{{domxref("Element")}} の {{domxref("Element/keyup_event", "keyup")}} イベント</li>
</ul>
|