檔案型別宣告
XML 文件可以包含 DTD。DTD 代表文件型別宣告。DTD 以 <!DOCTYPE root-element-name >
開頭,其中 doc-element-name
必須與所謂的文件元素的名稱匹配(頂層的一個元素)。
<?xml version="1.0"?>
<!DOCTYPE document>
<document>
<!-- the rest of the document -->
</document>
XML 文件可以包含 DTD。DTD 代表文件型別宣告。DTD 以 <!DOCTYPE root-element-name >
開頭,其中 doc-element-name
必須與所謂的文件元素的名稱匹配(頂層的一個元素)。
<?xml version="1.0"?>
<!DOCTYPE document>
<document>
<!-- the rest of the document -->
</document>