我们的志愿者还没有将这篇文章翻译为 中文 (简体)。加入我们帮助完成翻译!
您也可以阅读此文章的English (US)版。
This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.
The InputEvent()
constructor creates a new InputEvent
.
Syntax
event = new InputEvent(typeArg, inputEventInit);
Values
- typeArg
- Is a
DOMString
representing the name of the event. - inputEventInitOptional
Is a InputEventInit
dictionary, having the following fields:
inputType
: (Optional) A string specifying the type of change for editible content such as, for example, inserting, deleting, or formatting text.data
: (Optional) A string containging characters to insert. This may be an empty string if the change doesn't insert text (such as when deleting characters, for example).dataTransfer
: (Optional) ADataTransfer
object containing information about richtext or plaintext data being added to or removed from editible content.isComposing
: (Optional) A boolean indicating that the event is part of a composition session, meaning it is after acompositionstart
event but before acompositionend
event. The default isfalse
.ranges
: (Optional) An array of static ranges that will be affected by a change to the DOM if the input event is not canceled.
The InputEventInit
dictionary also accepts fields from UIEventInit
and from EventInit
dictionaries.
Specifications
Specification | Status | Comment |
---|---|---|
Unknown The definition of 'InputEvent()' in that specification. |
Unknown | Initial definition. |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 60 | 31 (31) | ? | 47 | ? |
Feature | Android Webview | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | 60 | 60 | 31.0 (31) | ? | 47 | ? |
See also
InputEvent
, the interface of the objects it constructs.