<!-- This is "note.xml" -->
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE note SYSTEM "note.dtd">
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
<!-- This is "note.dtd" -->
<!ELEMENT note (to, from, heading, body)>
<!ELEMENT to (#PCDATA)>
<!ELEMENT from (#PCDATA)>
<!ELEMENT heading (#PCDATA)>
<!ELEMENT body (#PCDATA)>
本文档展示了XML文件的基本结构及其DTD定义。包含一个简单的提醒便条示例,详细说明了XML元素如何组织。
1273

被折叠的 条评论
为什么被折叠?



