InputEvent: isComposing プロパティ
Baseline 2023Newly 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 |