讓我們考慮這個XML數據命名空間URI究竟意味着什麼?
<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>
這裏NURI爲H: 「http://www.w3.org/TR/html4/」
NURI爲F: 「http://www.w3schools.com/furniture」
什麼是NURI(命名空間URI)確切指的是?有必要嗎?。它實際上包含什麼?
@andrewb這很好。我在問NURI? –