Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Event.createEvent()

创建一个新的事件(Event),随之必须调用自身的 init 方法进行初始化。

语法

document.createEvent(type) 
type
指明待创建事件对象的类型的字符串

This method returns a new DOM Event object of the specified type, which must be initialized before use.

此方法返回一个新的特定类型的 DOM Event 对象,此对象在使用前必须经过初始化(init)。

示例

var newEvent = document.createEvent("UIEvents");

规范

文档标签和贡献者

标签: 
 此页面的贡献者: Serifx, yulifu
 最后编辑者: Serifx,