tinymce-dom-TreeWalker
优质
小牛编辑
127浏览
2023-12-01
Examples
var walker = new tinymce.dom.TreeWalker(startNode);
do {
console.log(walker.current());
} while (walker.next());
Methods
name | summary | defined by |
---|---|---|
current() | Returns the current node. | tinymce.dom.TreeWalker |
next() | Walks to the next node in tree. | tinymce.dom.TreeWalker |
prev() | Walks to the previous node in tree. | tinymce.dom.TreeWalker |
Methods
current
current():NodeReturns the current node.
Return value
- Node - Current node where the walker is.
next
next():NodeWalks to the next node in tree.
Return value
- Node - Current node where the walker is after moving to the next node.
prev
prev():NodeWalks to the previous node in tree.
Return value
- Node - Current node where the walker is after moving to the previous node.
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.