XML 架构 simpleContent 元素
❮ 完整的 XML 架构参考
定义和用法
simpleContent 元素包含对纯文本复杂类型或作为内容的简单类型的扩展或限制,并且不包含任何元素。
元素信息
- 父元素: complexType
语法
<simpleContent
id=ID
any attributes
>
(annotation?,(restriction|extension))
</simpleContent>
(? 符号声明该元素可以在 simpleContent 元素内出现零次或一次)
属性 | 描述 |
---|---|
id | 可选。指定元素的唯一 ID |
any attributes | 可选。 指定具有非模式命名空间的任何其他属性 |
实例 1
这是一个包含纯文本的 XML 元素 (<shoesize>) 的示例:
<shoesize country="france">35</shoesize>
以下示例声明了一个 complexType,"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 架构参考