xmlns优先?

时间:2013-02-21 17:33:29

标签: xml xml-namespaces

<?xml version="1.0" encoding="utf-8"?>
<request xmlns:a="http://example.com/a1">
    <a:description xmlns:a="http://example.com/a2">foo bar</a:description>
</request>

a:descriptionhttp://example.com/a1中的http://example.com/a2名称空间是哪个?

1 个答案:

答案 0 :(得分:2)

http://example.com/a2

儿童覆盖父母。

命名空间声明已经影响了它声明的元素(否则你无法在第一个元素上设置命名空间)。