我需要查看图中最接近的前面元素是否是标题元素。我的XML结构如下所示:
<section>
<title>Something</title>
<figure><graphic></graphic></figure>
<figure><graphic></graphic></figure>
<p>Some text</p>
</section>
答案 0 :(得分:0)
取出前面的第一个兄弟并确认它是标题:
//figure[preceding-sibling::*[1][self::title]]