InputEvent

InputEvent 接口用来构造和字符输入相关的事件对象。

构造函数

InputEvent()
创建一个 InputEvent 对象。

属性

除继承自 UIEventEvent 接口的属性外,还有以下属性:

InputEvent.data 只读
返回当前输入的字符串,如果是删除操作,则该值为空字符串。
InputEvent.isComposing只读
返回一个布尔值,表明该事件是在触发 compositionstart 事件之后且触发 compositionend 事件之前触发的,也就是表明当前输入的字符是输入法的中途输入。

方法

除继承自 UIEventEvent 接口的方法外,没有其它自身方法。

规范

Specification Status Comment
Document Object Model (DOM) Level 3 Events Specification
InputEvent
Working Draft Initial definition.

浏览器兼容性

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 未实现 31.0 (31.0) 未实现 未实现 未实现
data 未实现 未实现 未实现 未实现 未实现
isComposing() 未实现 31.0 (31.0) 未实现 未实现 未实现
Feature Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support 未实现 31.0 (31.0) 未实现 未实现 未实现
data 未实现 未实现 未实现 未实现 未实现
isComposing() 未实现 31.0 (31.0) 未实现 未实现 未实现

相关链接

文档标签和贡献者