我已经阅读了通过 google 找到的几篇文章以及关于命名空间和 xml 方案的 wiki 文章,但我不知道.. 我只是不太了解默认命名空间和目标命名空间之间的区别..
所以默认命名空间是默认使用的命名空间(如果没有为某些元素定义其他命名空间),而目标命名空间似乎具有相同的用途?
另外,正如我所读到的,属性默认签署到空命名空间?什么是空命名空间?
在我的例子中:
<test xmlns="www.example.org" attribute1="1" attribute2="tbla" attribute3="helloworld">
<child1></child1>
</test>
所以 child1 在 www.example.org 命名空间中,而 attribute1 /attribute2 和属性 3 在 null 命名空间中?