tinymce-ContentEvent
优质
小牛编辑
118浏览
2023-12-01
Examples
tinymce.activeEditor.on('GetContent', function(e) {
console.log(e.content);
});
Properties
name | type | summary | defined by |
---|---|---|---|
content | String | Editor contents to be set or the content that was returned from the editor. | tinymce.ContentEvent |
element | DOMElement | Optional 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 |
format | String | Format of the contents normally "html". | tinymce.ContentEvent |
get | Boolean | Optional state gets added for the setContent event then it's set to true. | tinymce.ContentEvent |
load | Boolean | Optional state gets added for the load event then it's set to true. | tinymce.ContentEvent |
save | Boolean | Optional state gets added for the save event then it's set to true. | tinymce.ContentEvent |
set | Boolean | Optional state gets added for the getContent event then it's set to true. | tinymce.ContentEvent |
type | String | The event type name for example "click". | tinymce.Event |
Methods
name | summary | defined 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():BooleanReturns 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():BooleanReturns 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():BooleanReturns 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.