XML 架构 annotation 元素
❮ 完整的 XML 架构参考
定义和用法
annotation 注释元素是指定模式注释的顶级元素。 注释用作内联文档。
元素信息
- 父元素: Any element
语法
<annotation
id=ID
any attributes
>
(appinfo|documentation)*
</annotation>
(*号表示该元素可以在注释元素内出现零次或多次)
属性 | 描述 |
---|---|
id | 可选。指定元素的唯一 ID |
any attributes | 可选。 指定具有非模式命名空间的任何其他属性 |
实例 1
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:appinfo>W3Schools Note</xs:appinfo>
<xs:documentation xml:lang="en">
This Schema defines a W3Schools note!
</xs:documentation>
</xs:annotation>
.
.
.
</xs:schema>
❮ 完整的 XML 架构参考