InputEvent: isComposing プロパティ

Baseline 2023

Newly available

Since March 2023, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.

InputEvent.isComposing は読み取り専用プロパティで、このイベントが compositionstart の後、かつ compositionend の前に発生したかどうかを示す論理値を返します。

論理値です。

js
const inputEvent = new InputEvent("syntheticInput", false);
console.log(inputEvent.isComposing); // return false

仕様書

Specification
UI Events
# dom-inputevent-iscomposing

ブラウザーの互換性

BCD tables only load in the browser

関連情報