返回介绍

tinymce-dom-Serializer

发布于 2019-05-06 06:49:56 字数 4940 浏览 1107 评论 0 收藏 0

Methods

namesummarydefined by
addAttributeFilter()Adds a attribute filter function to the parser used by the serializer, the parser will collect nodes that has the specified attributes and then execute the callback ones it has finished parsing the document.tinymce.dom.Serializer
addNodeFilter()Adds a node filter function to the parser used by the serializer, the parser will collect the specified nodes by name and then execute the callback ones it has finished parsing the document.tinymce.dom.Serializer
addRules()Adds valid elements rules to the serializers schema instance this enables you to specify things like what elements should be outputted and what attributes specific elements might have. Consult the Wiki for more details on this format.tinymce.dom.Serializer
addTempAttr()Adds a temporary internal attribute these attributes will get removed on undo and when getting contents out of the editor.tinymce.dom.Serializer
getTempAttrs()Returns an array of all added temp attrs names.tinymce.dom.Serializer
serialize()Serializes the specified browser DOM node into a HTML string.tinymce.dom.Serializer
setRules()Sets the valid elements rules to the serializers schema instance this enables you to specify things like what elements should be outputted and what attributes specific elements might have. Consult the Wiki for more details on this format.tinymce.dom.Serializer

Methods

addAttributeFilter

addAttributeFilter(callback:function)

Adds a attribute filter function to the parser used by the serializer, the parser will collect nodes that has the specified attributes and then execute the callback ones it has finished parsing the document.

Examples
parser.addAttributeFilter('src,href', function(nodes, name) {
 for (var i = 0; i < nodes.length; i++) {
  console.log(nodes[i].name);
 }
});
Parameters
  • callback (function) - Callback function to execute once it has collected nodes.

addNodeFilter

addNodeFilter(callback:function)

Adds a node filter function to the parser used by the serializer, the parser will collect the specified nodes by name and then execute the callback ones it has finished parsing the document.

Examples
parser.addNodeFilter('p,h1', function(nodes, name) {
 for (var i = 0; i < nodes.length; i++) {
  console.log(nodes[i].name);
 }
});
Parameters
  • callback (function) - Callback function to execute once it has collected nodes.

addRules

addRules(rules:String)

Adds valid elements rules to the serializers schema instance this enables you to specify things like what elements should be outputted and what attributes specific elements might have. Consult the Wiki for more details on this format.

Parameters
  • rules (String) - Valid elements rules string to add to schema.

addTempAttr

addTempAttr(name:String)

Adds a temporary internal attribute these attributes will get removed on undo and when getting contents out of the editor.

Parameters
  • name (String) - string

getTempAttrs

getTempAttrs():String[]

Returns an array of all added temp attrs names.

Return value
  • String[] - Array with attribute names.

serialize

serialize(node:DOMNode, args:Object)

Serializes the specified browser DOM node into a HTML string.

Parameters
  • node (DOMNode) - DOM node to serialize.
  • args (Object) - Arguments option that gets passed to event handlers.

setRules

setRules(rules:String)

Sets the valid elements rules to the serializers schema instance this enables you to specify things like what elements should be outputted and what attributes specific elements might have. Consult the Wiki for more details on this format.

Parameters
  • rules (String) - Valid elements rules string.

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