最新的Web開發教程
 

XML模式註釋元素


<XML Schema參考手冊

定義和用法

註釋元素是指定模式註釋的頂級元素。 這些意見作為內聯文檔。

元素信息

  • Parent elements:任何元素

句法

<annotation
id=ID
any attributes
>

(appinfo|documentation)*

</annotation>

(*符號聲明元素可出現註釋元素中零次或多次)

屬性 描述
id 可選的。 指定一個唯一的ID為元素
any attributes 可選的。 規定帶有non-schema命名空間的任何其他屬性。

例1

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:annotation>
  <xs:appinfo>w3ii Note</xs:appinfo>
  <xs:documentation xml:lang="en">
  This Schema defines a w3ii note!
  </xs:documentation>
</xs:annotation>

.
.
.

</xs:schema>

<XML Schema參考手冊