名称空间感知功能

<root xmlns="http://test/">
    <element xmlns:example="http://foobar/">
        <example:hello_world attribute="another example" />
    </element>
</root>

表达式/root 将不返回任何内容,因为在文档的根级别没有名为 root 的非命名空间元素。但是,以下返回 <root xmlns="http://test/"> 元素。

/*[namespace-uri() = 'http://test/' and local-name() = 'root']