<?xml version="1.0"?> <note> <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget me this weekend!</body> </note>文档的第一行:一个应该经常包含的XML申明,它定义了XML文档的版本号
在这个例子中表示文档将使用XML1.0的规范.
<?xml version="1.0"?>下一行定义了文档里面的第一个元素(element)也叫第一个元素为根元素:
<note>再下面定义了根元素的四个子元素(分别是to,from,heading,和body):
<to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget me this weekend!</body>最后一行定义了根元素的结束标志
</note>所有的XML元素都必须要有一个结束标志
在HTML中一些元素不必要有一个结束标志.
例如下面的代码在HTML中是合法的:
<p>This is a paragraph <p>This is another paragraph但是在XML中所有的元素都必须有一个结束标志,例如这样:
<p>This is a paragraph</p> <p>This is another paragraph</p>XML标志是大小写敏感的
XML标志是大小写敏感的.例如标志<Letter>是不同与标志<letter>的.
所有一个标志的开始和结束必须使用同样的大小写
例如下面是错误的
<Message>This is incorrect</message>这样才正确
<message>This is correct</message>原文链接:https://www.f2er.com/xml/297443.html