TreeWalker 对象表示一个当前文档的子树中的所有节点及其位置。
可以使用Document.createTreeWalker() 方法创建一个TreeWalker。
属性
本接口未继承任何属性
TreeWalker.root只读- 返回一个
Node表示创建时所使用的根节点。 TreeWalker.whatToShow只读- Returns an
unsigned longbeing a bitmask made of constants describing the types ofNodethat must to be presented. Non-matching nodes are skipped, but their children may be included, if relevant. The possible values are:Constant 数值 描述 NodeFilter.SHOW_ALL-1(that is the max value ofunsigned long)显示所有节点 NodeFilter.SHOW_ATTRIBUTE2Shows attribute Attrnodes. This is meaningful only when creating aTreeWalkerwith anAttrnode as its root; in this case, it means that the attribute node will appear in the first position of the iteration or traversal. Since attributes are never children of other nodes, they do not appear when traversing over the document tree.NodeFilter.SHOW_CDATA_SECTION8Shows CDATASectionnodes.NodeFilter.SHOW_COMMENT128Shows Commentnodes.NodeFilter.SHOW_DOCUMENT256Shows Documentnodes.NodeFilter.SHOW_DOCUMENT_FRAGMENT1024Shows DocumentFragmentnodes.NodeFilter.SHOW_DOCUMENT_TYPE512Shows DocumentTypenodes.NodeFilter.SHOW_ELEMENT1Shows Elementnodes.NodeFilter.SHOW_ENTITY32Shows Entitynodes. This is meaningful only when creating aTreeWalkerwith anEntitynode as its root; in this case, it means that theEntitynode will appear in the first position of the traversal. Since entities are not part of the document tree, they do not appear when traversing over the document tree.NodeFilter.SHOW_ENTITY_REFERENCE16Shows EntityReferencenodes.NodeFilter.SHOW_NOTATION2048Shows Notationnodes. This is meaningful only when creating aTreeWalkerwith aNotationnode as its root; in this case, it means that theNotationnode will appear in the first position of the traversal. Since entities are not part of the document tree, they do not appear when traversing over the document tree.NodeFilter.SHOW_PROCESSING_INSTRUCTION64Shows ProcessingInstructionnodes.NodeFilter.SHOW_TEXT4Shows Textnodes. TreeWalker.filter只读- 根据不同的
节点过滤器返回 相关节点. TreeWalker.expandEntityReferences只读- Is a
Booleanindicating if, when discarding anEntityReferenceits whole sub-tree must be discarded at the same time. TreeWalker.currentNode- 任何遍历方法在上一次遍历中返回的
节点.
方法
此接口不继承任何方法。
注意:TreeWalker只遍历可显示元素。
TreeWalker.parentNode()- 遍历到当前
节点的父节点, 并返回. It also moves the current node to this one. If no such node exists, or if it is before that the root node defined at the object construction, returnsnulland the current node is not changed. TreeWalker.firstChild()- 遍历到当前
节点的第一个子节点, 并返回. It also moves the current node to this child. If no such child exists, returnsnulland the current node is not changed. TreeWalker.lastChild()- 遍历到当前
节点的最后一个子节点, 并返回. It also moves the current node to this child. If no such child exists, returnsnulland the current node is not changed. TreeWalker.previousSibling()- 遍历到当前
节点的前一个兄弟节点, 并返回. If there is no such node, returnnulland the current node is not changed. TreeWalker.nextSibling()- 遍历到当前
节点的后一个兄弟节点, 并返回.. If there is no such node, returnnulland the current node is not changed. TreeWalker.previousNode()- Moves the current
Nodeto the previous visible node in the document order, and returns the found node. It also moves the current node to this one. If no such node exists,or if it is before that the root node defined at the object construction, returnsnulland the current node is not changed. TreeWalker.nextNode()- Moves the current
Nodeto the next visible node in the document order, and returns the found node. It also moves the current node to this one. If no such node exists, returnsnulland the current node is not changed.
Specifications
| Specification | Status | Comment |
|---|---|---|
| DOM TreeWalker |
Living Standard | Removed the expandEntityReferences property. |
| Document Object Model (DOM) Level 2 Traversal and Range Specification TreeWalker |
Recommendation | Initial definition. |
Browser compatibility
| Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|---|
| Basic support | 1.0 | (Yes) | 2.0 (1.8.1) | 9.0 | 9.0 | 3.0 |
| Feature | Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|
| Basic support | (Yes) | (Yes) | 1.0 (1.8.1) | (Yes) | 9.0 | 3.0 |
See also
- The creator method:
Document.createTreeWalker(). - Related interfaces:
NodeFilter,NodeIterator.