NodeIterator.previousNode() - Web APIs 编辑
The NodeIterator.previousNode()
method returns the previous node in the set represented by the NodeIterator
and moves the position of the iterator backwards within the set.
This method returns null
when the current node is the first node in the set.
In old browsers, as specified in old versions of the specifications, the method may throws the INVALID_STATE_ERR
DOMException
if this method is called after the NodeIterator.detach()
method. Recent browsers never throw.
Syntax
node = nodeIterator.previousNode();
Example
var nodeIterator = document.createNodeIterator(
document.body,
NodeFilter.SHOW_ELEMENT,
{ acceptNode: function(node) { return NodeFilter.FILTER_ACCEPT; } },
false // this optional argument is not used any more
);
currentNode = nodeIterator.nextNode(); // returns the next node
previousNode = nodeIterator.previousNode(); // same result, since we backtracked to the previous node
Specifications
Specification | Status | Comment |
---|---|---|
DOM The definition of 'NodeIterator.previousNode' in that specification. | Living Standard | As detach() is now a no-op method, this method cannot throw anymore. |
Document Object Model (DOM) Level 2 Traversal and Range Specification The definition of 'NodeIterator.previousNode' in that specification. | Obsolete | Initial definition. |
Browser compatibility
BCD tables only load in the browser
See also
- The interface it belongs to:
NodeIterator
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论