From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../web/api/keyboardevent/iscomposing/index.html | 62 ++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 files/ja/web/api/keyboardevent/iscomposing/index.html (limited to 'files/ja/web/api/keyboardevent/iscomposing') diff --git a/files/ja/web/api/keyboardevent/iscomposing/index.html b/files/ja/web/api/keyboardevent/iscomposing/index.html new file mode 100644 index 0000000000..802db3b32b --- /dev/null +++ b/files/ja/web/api/keyboardevent/iscomposing/index.html @@ -0,0 +1,62 @@ +--- +title: KeyboardEvent.isComposing +slug: Web/API/KeyboardEvent/isComposing +tags: + - API + - DOM + - KeyboardEvent + - Property + - Read-only + - Reference +translation_of: Web/API/KeyboardEvent/isComposing +--- +

{{APIRef("DOM Events")}}

+ +

KeyboardEvent.isComposing は読み取り専用プロパティで、 {{jsxref("Boolean")}} 値でイベントが変換セッションの途中、すなわち {{domxref("Element/compositionstart_event", "compositionstart")}} の後かつ {{domxref("Element/compositionend_event", "compositionend")}} の前に発行されたことを示します。

+ +

構文

+ +
var bool = event.isComposing;
+ +

+ +
var kbdEvent = new KeyboardEvent("syntheticKey", false);
+console.log(kbdEvent.isComposing); // false を返す
+
+ +

仕様書

+ + + + + + + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('UI Events', '#dom-keyboardevent-iscomposing', 'KeyboardEvent.prototype.isComposing')}}{{Spec2('UI Events')}}
{{SpecName('DOM3 Events','#widl-KeyboardEvent-isComposing','KeyboardEvent.prototype.isComposing')}}{{Spec2('DOM3 Events')}}初回定義
+ +

ブラウザーの互換性

+ + + +

{{Compat("api.KeyboardEvent.isComposing")}}

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf