aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/inputevent/iscomposing/index.html
blob: 6731f1fb3b7f1d34952220ad67b4d19f902b2137 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
title: InputEvent.isComposing
slug: Web/API/InputEvent/isComposing
translation_of: Web/API/InputEvent/isComposing
---
<p>{{APIRef("DOM Events")}}</p>

<p>The <code><strong>InputEvent.isComposing</strong></code> read-only property returns a {{jsxref("Boolean")}} value indicating if the event is fired after {{event("compositionstart")}} and before {{event("compositionend")}}.</p>

<h2 id="这是一个只读属性,返回boolean类型。表示正处于输入事件的开始与结束之间,表示正在输入状态。">这是一个只读属性,返回boolean类型。表示正处于输入事件的开始与结束之间,表示正在输入状态。</h2>

<h2 id="Syntax">Syntax</h2>

<pre class="syntaxbox">var <em>bool</em> = <em>event</em>.isComposing;</pre>

<h2 id="Example">Example</h2>

<pre class="brush: js">var inputEvent = new InputEvent("syntheticInput", false);
console.log(inputEvent.isComposing); // return false
</pre>

<h2 id="Specifications" name="Specifications">Specifications</h2>

<table class="standard-table" style="height: 49px; width: 1000px;">
 <thead>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('DOM3 Events','#widl-InputEvent-isComposing','InputEvent.isComposing')}}</td>
   <td>{{Spec2('DOM3 Events')}}</td>
   <td>Initial definition.</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility">Browser compatibility</h2>

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

<h2 class="note" id="See_also">See also</h2>

<ul>
 <li>{{ event("compositionstart") }} and {{ event("compositionend")}}</li>
 <li>{{domxref("InputEvent")}}</li>
</ul>