CustomEvent.initCustomEvent()

已弃用: 不再推荐使用该特性。虽然一些浏览器仍然支持它,但也许已从相关的 web 标准中移除,也许正准备移除或出于兼容性而保留。请尽量不要使用该特性,并更新现有的代码;参见本页面底部的兼容性表格以指导你作出决定。请注意,该特性随时可能无法正常工作。

CustomEvent.initCustomEvent() 方法初始化了一个 CustomEvent object. 如果该事件已经被分发出去,则不会在初始化过程中重复触发.

这类对象一定是由 Document.createEvent() 方法创建的。该方法被分发之前必须通过EventTarget.dispatchEvent()方法设置.一旦被分发则,则无法被重新设置.

备注: 该方法已经作废,不要在新项目中继续使用该方法。

Instead use specific event constructors, like CustomEvent(). The page on Creating and triggering events (en-US) gives more information about the way to use these.

Syntax

event.initCustomEvent(type, canBubble, cancelable, detail);

Parameters

type

类型DOMString,事件名称。

canBubble

类型Boolean,事件是否沿着 dom 树向上冒泡。

cancelable

类型Boolean,事件是否可取消。

detail

事件初始化时传入的数据。

Specifications

Specification
DOM Standard
# dom-customevent-initcustomevent

Browser compatibility

BCD tables only load in the browser

See also