我试图弄清楚为什么我们需要用于XML名称空间的URI,而我找不到这样做的目的。谁能在一个具体的例子中使我有所作为呢?
编辑:
好吧,例如:我来自w3schools
<root
xmlns:h="http://www.w3.org/TR/html4/"
xmlns:f="http://www.w3schools.com/furniture">
<h:table>
<h:tr>
<h:td>Apples</h:td>
<h:td>Bananas</h:td>
</h:tr>
</h:table>
<f:table>
<f:name>African Coffee Table</f:name>
<f:width>80</f:width>
<f:length>120</f:length>
</f:table>
</root>
那么应该http://www.w3schools.com/furniture
持有什么呢?