当前位置: 首页 > 文档资料 > tinyMCE 帮助文档 >

tinymce-dom-TreeWalker

优质
小牛编辑
127浏览
2023-12-01

Examples

var walker = new tinymce.dom.TreeWalker(startNode);

do {
    console.log(walker.current());
} while (walker.next());

Methods

namesummarydefined 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():Node

Returns the current node.

Return value
  • Node - Current node where the walker is.

next

next():Node

Walks to the next node in tree.

Return value
  • Node - Current node where the walker is after moving to the next node.

prev

prev():Node

Walks 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.