本文介绍了检索PHP中的相对DOM节点的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想检索文档中下一个元素标签的数据,例如:

I want to retrieve the data of the next element tag in a document, for example:

我想检索中的元素由选择:

/*/*/span/following-sibling::blockquote
           [preceding-sibling::*
             [not(self::blockquote)][1]
                [self::span and count(preceding-sibling::span)=1]
           ]

。 ...

请参见由以下表达式选择的节点

See in the XPath Visualizer the nodes selected by the following expression :

/*/*/span/following-sibling::blockquote
           [preceding-sibling::*
             [not(self::blockquote)][1]
                [self::span and count(preceding-sibling::span)=3]
           ]

这篇关于检索PHP中的相对DOM节点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-25 17:56