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