XML 架构 anyAttribute 元素
❮ 完整的 XML 架构参考
定义和用法
anyAttribute 元素使作者能够使用架构未指定的属性来扩展 XML 文档。
元素信息
- 父元素:complexType、限制(simpleContent 和 complexContent)、扩展(simpleContent 和complexContent)、attributeGroup
语法
<anyAttribute
id=ID
namespace=namespace
processContents=lax|skip|strict
any attributes
>
(annotation?)
</anyAttribute>
(? 符号表明该元素可以在 anyAttribute 元素内出现零次或一次)
属性 | 描述 |
---|---|
id | 可选。指定元素的唯一 ID |
namespace | 可选。指定包含可以使用的属性的名称空间。 可以设置为以下之一:
|
processContents | 可选。指定 XML 处理器应如何处理对此 any 元素指定的元素的验证。 可以设置为以下之一:
|
any attributes | 可选。 指定具有非模式命名空间的任何其他属性 |
实例 1
以下示例显示了一个名为 "person" 的元素的声明。 通过使用 <anyAttribute> 元素,作者可以向 "person" 元素添加任意数量的属性:
<xs:element name="person">
<xs:complexType>
<xs:sequence>
<xs:element name="firstname" type="xs:string"/>
<xs:element name="lastname" type="xs:string"/>
</xs:sequence>
<xs:anyAttribute/>
</xs:complexType>
</xs:element>
❮ 完整的 XML 架构参考