--- title: KeyboardEvent.isComposing slug: Web/API/KeyboardEvent/isComposing tags: - API - DOM - KeyboardEvent - events - 键盘事件 translation_of: Web/API/KeyboardEvent/isComposing ---

{{APIRef("DOM Events")}}

KeyboardEvent.isComposing 只读属性,返回一个 {{jsxref("Boolean")}} 值,表示该事件是否在 {{event("compositionstart")}} 之后和 {{event("compositionend")}} 之前被触发。

语法

var bool = event.isComposing;

示例

var kbdEvent = new KeyboardEvent("syntheticKey", false);
console.log(kbdEvent.isComposing); // return false

标准

Specification Status Comment
{{SpecName('DOM3 Events','#widl-KeyboardEvent-isComposing','KeyboardEvent.isComposing')}} {{Spec2('DOM3 Events')}} Initial definition.

浏览器兼容性

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

参考