返回介绍

tinymce-ContentEvent

发布于 2019-05-06 06:49:48 字数 4323 浏览 1102 评论 0 收藏 0

Examples

tinymce.activeEditor.on('GetContent', function(e) {
    console.log(e.content);
});

Properties

nametypesummarydefined by
contentStringEditor contents to be set or the content that was returned from the editor.tinymce.ContentEvent
elementDOMElementOptional element that the load/save event is for. This element is the textarea/div element that the contents gets parsed from or serialized to.tinymce.ContentEvent
formatStringFormat of the contents normally "html".tinymce.ContentEvent
getBooleanOptional state gets added for the setContent event then it's set to true.tinymce.ContentEvent
loadBooleanOptional state gets added for the load event then it's set to true.tinymce.ContentEvent
saveBooleanOptional state gets added for the save event then it's set to true.tinymce.ContentEvent
setBooleanOptional state gets added for the getContent event then it's set to true.tinymce.ContentEvent
typeStringThe event type name for example "click".tinymce.Event

Methods

namesummarydefined by
isDefaultPrevented()Returns true/false if the default action is to be prevented or not.tinymce.Event
isImmediatePropagationStopped()Returns true/false if the event immediate propagation is stopped or not.tinymce.Event
isPropagationStopped()Returns true/false if the event propagation is stopped or not.tinymce.Event
preventDefault()Prevents the default action of an event to be executed.tinymce.Event
stopImmediatePropagation()Prevents the event from propagating to listeners on the same object.tinymce.Event
stopPropagation()Stops the event from propagating up to listeners on parent objects.tinymce.Event

Methods

isDefaultPrevented

isDefaultPrevented():Boolean

Returns true/false if the default action is to be prevented or not.

Return value
  • Boolean - True/false if the event is to be execured or not.

isImmediatePropagationStopped

isImmediatePropagationStopped():Boolean

Returns true/false if the event immediate propagation is stopped or not.

Return value
  • Boolean - True/false if the event immediate propagation is stopped or not.

isPropagationStopped

isPropagationStopped():Boolean

Returns true/false if the event propagation is stopped or not.

Return value
  • Boolean - True/false if the event propagation is stopped or not.

preventDefault

preventDefault()

Prevents the default action of an event to be executed.

stopImmediatePropagation

stopImmediatePropagation()

Prevents the event from propagating to listeners on the same object.

stopPropagation

stopPropagation()

Stops the event from propagating up to listeners on parent objects.

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 和您的相关数据。
    原文