本文介绍了检查前面的兄弟姐妹是否是标题元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要查看图中最接近的前面元素是否是标题元素.我的 XML 结构如下所示:

I need to see if the closest preceding element in the figure is a title element. My XML-structure looks like this:

<section>
<title>Something</title>
<figure><graphic></graphic></figure>
<figure><graphic></graphic></figure>
<p>Some text</p>
</section>

推荐答案

取前面的第一个兄弟并验证它是一个标题:

Take the first preceding sibling and verify it is a title:

//figure[preceding-sibling::*[1][self::title]]

这篇关于检查前面的兄弟姐妹是否是标题元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-11 01:40