最新的Web开发教程
 

XML架构simpleContent的元素


<XML Schema参考手册

定义和用法

该simpleContent的元素包含在一个纯文本的复杂类型或简单类型的内容扩展或限制,不包含任何元素。

元素信息

  • Parent elements:复杂类型

句法

<simpleContent
id=ID
any attributes
>

(annotation?,(restriction|extension))

</simpleContent>

(?符号声明元素可出现零次或一次simpleContent的元素中)

属性 描述
id 可选的。 指定一个唯一的ID为元素
any attributes 可选的。 规定带有non-schema命名空间的任何其他属性。

例1

这里是一个XML元素的一个例子(<shoesize>)包含纯文本:

<shoesize country="france">35</shoesize>

下面的示例声明一个复杂类型, "shoesize"被定义为一个整数数据类型,并与一个国家属性的内容:

<xs:element name="shoesize">
  <xs:complexType>
    <xs:simpleContent>
      <xs:extension base="xs:integer">
        <xs:attribute name="country" type="xs:string" />
      </xs:extension>
    </xs:simpleContent>
  </xs:complexType>
</xs:element>

<XML Schema参考手册