XML xmlns

时间:2023-03-09 17:33:57
XML xmlns

xmlns

xml namespaces

参考

http://www.w3school.com.cn/tags/tag_prop_xmlns.asp

http://www.w3school.com.cn/xml/xml_namespaces.asp

<table>
<tr>这是一行</tr>
</table> <table>
<material>黄花梨</material>
</table>

放到同一个文件中,分不清楚,加上命名空间就可以分清楚是谁的了。

<a:table>
<a:tr>这是一行</a:tr>
</a:table> <b:table>
<b:material>黄花梨</b:material>
</b:table>

xmlns:namespace-prefix="namespaceURI"

namespace-prefix 是前缀,方便使用

namespaceURI 是唯一标识