如何选择某个元素的所有父元素?
有没有一种简单的方法来选择特定级别以上的所有节点?
或者唯一的解决方案是删除该元素的子元素?
Is there a simple way to select all the nodes above a certain level?
or would the only solution to that be to delete the child elements of that element?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这会递归地返回节点的所有父元素:
如果您想要一个仅包含该节点及其父节点的文档,则需要删除所有其他节点。
This recursively returns all parent elements of a node:
If you want a document that contains only the node and its parents, you need to remove all other nodes though.