diff options
author | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-08-08 17:28:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-09 00:28:33 +0900 |
commit | 376fc21942c8059055f97804e4f47617821c1f0f (patch) | |
tree | 8bb777327b9530dbbb01ac51b8fb2aab4b6c4a6c /files/ja/web/api/document/keyup_event | |
parent | 42b4c570f00d300df6187b9c727319c44f742a40 (diff) | |
download | translated-content-376fc21942c8059055f97804e4f47617821c1f0f.tar.gz translated-content-376fc21942c8059055f97804e4f47617821c1f0f.tar.bz2 translated-content-376fc21942c8059055f97804e4f47617821c1f0f.zip |
Fixes #1634 - remove old compat site for Japanese (#1900)
* Fixes #1634 - remove old compat site mentions for Japanese - part 1
* Fixes #1634 - remove old compat site mentions for Japanese - part 2
* Update index.html
Co-authored-by: Masahiro FUJIMOTO <mfujimot@gmail.com>
Diffstat (limited to 'files/ja/web/api/document/keyup_event')
-rw-r--r-- | files/ja/web/api/document/keyup_event/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/api/document/keyup_event/index.html b/files/ja/web/api/document/keyup_event/index.html index d2905b72d1..58752edd11 100644 --- a/files/ja/web/api/document/keyup_event/index.html +++ b/files/ja/web/api/document/keyup_event/index.html @@ -42,7 +42,7 @@ translation_of: Web/API/Document/keyup_event <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> +<p>Firefox 65 から、 {{domxref("Document/keydown_event", "keydown")}} および <code>keyup</code> イベントは IME 入力中でも発生するようになり、 CJKT のユーザーのブラウザー間の互換性が向上しました ({{bug(354358)}})。 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) { |