tinymce-html-DomParser
优质
小牛编辑
126浏览
2023-12-01
Examples
var parser = new tinymce.html.DomParser({validate: true}, schema);
var rootNode = parser.parse('<h1>content</h1>');
Methods
name | summary | defined by |
---|---|---|
addAttributeFilter() | Adds a attribute filter function to the parser, the parser will collect nodes that has the specified attributes and then execute the callback ones it has finished parsing the document. | tinymce.html.DomParser |
addNodeFilter() | Adds a node filter function to the parser, the parser will collect the specified nodes by name and then execute the callback ones it has finished parsing the document. | tinymce.html.DomParser |
filterNode() | Runs the specified node though the element and attributes filters. | tinymce.html.DomParser |
parse() | Parses the specified HTML string into a DOM like node tree and returns the result. | tinymce.html.DomParser |
Methods
addAttributeFilter
addAttributeFilter(callback:function)Adds a attribute filter function to the parser, 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, 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.
filterNode
filterNode(Node:tinymce.html.Node):tinymce.html.NodeRuns the specified node though the element and attributes filters.
Parameters
- Node (tinymce.html.Node) - the node to run filters on.
Return value
- tinymce.html.Node - The passed in node.
parse
parse(html:String, args:Object):tinymce.html.NodeParses the specified HTML string into a DOM like node tree and returns the result.
Examples
var rootNode = new DomParser({...}).parse('<b>text</b>');
Parameters
- html (String) - Html string to sax parse.
- args (Object) - Optional args object that gets passed to all filter functions.
Return value
- tinymce.html.Node - Root node containing the tree.
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.