返回介绍

tinymce-util-EventDispatcher

发布于 2019-05-06 06:50:05 字数 4649 浏览 943 评论 0 收藏 0

Examples

var eventDispatcher = new EventDispatcher();

 eventDispatcher.on('click', function() {console.log('data');});
 eventDispatcher.fire('click', {data: 123});

Methods

namesummarydefined by
fire()Fires the specified event by name.tinymce.util.EventDispatcher
has()Returns true/false if the dispatcher has a event of the specified name.tinymce.util.EventDispatcher
isNative()Returns true/false if the specified event name is a native browser event or not.tinymce.util.EventDispatcher
off()Unbinds an event listener to a specific event by name.tinymce.util.EventDispatcher
on()Binds an event listener to a specific event by name.tinymce.util.EventDispatcher
once()Binds an event listener to a specific event by name and automatically unbind the event once the callback fires.tinymce.util.EventDispatcher

Methods

fire

fire(name:String, args:Object?):Object

Fires the specified event by name.

Examples
instance.fire('event', {...});
Parameters
  • name (String) - Name of the event to fire.
  • args (Object?) - Event arguments.
Return value
  • Object - Event args instance passed in.

has

has(name:String):Boolean

Returns true/false if the dispatcher has a event of the specified name.

Parameters
  • name (String) - Name of the event to check for.
Return value
  • Boolean - true/false if the event exists or not.

isNative

isNative(name:String):Boolean

Returns true/false if the specified event name is a native browser event or not.

Parameters
  • name (String) - Name to check if it's native.
Return value
  • Boolean - true/false if the event is native or not.

off

off(name:String?, callback:callback?):Object

Unbinds an event listener to a specific event by name.

Examples
// Unbind specific callback
instance.off('event', handler);

// Unbind all listeners by name
instance.off('event');

// Unbind all events
instance.off();
Parameters
  • name (String?) - Name of the event to unbind.
  • callback (callback?) - Callback to unbind.
Return value
  • Object - Current class instance.

on

on(name:String, callback:callback, first:Boolean):Object

Binds an event listener to a specific event by name.

Examples
instance.on('event', function(e) {
    // Callback logic
});
Parameters
  • name (String) - Event name or space separated list of events to bind.
  • callback (callback) - Callback to be executed when the event occurs.
  • first (Boolean) - Optional flag if the event should be prepended. Use this with care.
Return value
  • Object - Current class instance.

once

once(name:String, callback:callback, first:Boolean):Object

Binds an event listener to a specific event by name and automatically unbind the event once the callback fires.

Examples
instance.once('event', function(e) {
    // Callback logic
});
Parameters
  • name (String) - Event name or space separated list of events to bind.
  • callback (callback) - Callback to be executed when the event occurs.
  • first (Boolean) - Optional flag if the event should be prepended. Use this with care.
Return value
  • Object - Current class instance.

Can't find what you're looking for? Let us know.

Except as otherwise noted, the content of this page is licensed under the Creative Commons BY-NC-SA 3.0 License, and code samples are licensed under the Apache 2.0 License.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文