日期:2014-05-18 浏览次数:20872 次
这个就是xml的根元素[img=http://forum.csdn.net/PointForum/ui/scripts/csdn/Plugin/003/monkey/0.gif][/img] <schema> 元素是每一个 XML Schema 的根元素: <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.w3school.com" xmlns="http://www.w3school.com" elementFormDefault="qualified"> <xsd:element name ="person" type ="xsd:string"></xsd:element>//元素 <xsd:element name ="student" type ="xsd:string"></xsd:element>//元素 </xsd:schema>
------解决方案--------------------
不是在另一个帖子里回了你了么
http://topic.csdn.net/u/20120511/16/1dcab6ae-b276-4301-bb33-3964bf33ba5a.html#37
摘自这个网页
By the way, there is nothing wrong to declare multiple root elements in a single schema document. The following example, word_term.xsd, declares two root elements, "word" and "term":
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="word"/>
<xs:element name="term"/>
</xs:schema>
Any XML document with "word" or "term" as the root element is considered as conforming to word_term.xsd.
翻译成汉字是说
顺便说一下,一个schema文档里定义多个根元素是没有问题的,就像下面的例子,word_term.xsd定义了2个根元素,word和term。
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="word"/>
<xs:element name="term"/>
</xs:schema>
任何一个以word或term为根元素的xml文档都是符合word_term.xsd的
------解决方案--------------------