我正在尝试查询 OpenXML PresentationML 格式中包含的以下示例关系 XML 文件的节点。
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
<Relationship Target="../notesSlides/notesSlide1.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/notesSlide" Id="rId2"/>
<Relationship Target="../slideLayouts/slideLayout2.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout" Id="rId1"/>
<Relationship Target="../media/image00.jpg" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" Id="rId3"/>
</Relationships>
我想要的是为 Id="rId3" 的关系节点选择属性 @Target。无论我通过什么 XPath 选择器,生成的节点集都是空的。谁能帮忙解开这个谜?