zno2

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 是唯一标识

posted on 2016-08-06 08:24  zno2  阅读(155)  评论(0编辑  收藏  举报

导航