Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要检查 section 元素中的第二个孩子是否是图形。我的 XML 结构如下所示:
<section> <title>Something</title> <figure><graphic></graphic></figure> <figure><graphic></graphic></figure> <p>Some text</p> </section>
有什么建议么?
此 XPath 表达式应返回其第二个子元素为图形的所有部分。
//section[child::*[2][self::figure]]
您是否尝试理解对检查前面的兄弟姐妹是否是标题元素的回复?