声明DTD中元素的枚举

时间:2012-10-31 13:04:31

标签: enums dtd

  

可能重复:
  DTD element type problem

是否可以使用DTD限制元素的值?

在这个例子中,我想将动物类型仅限于猫或狗:

<example>
   <animal>
      <type>cat</type>
   </animal>
   <animal>
      <type>dog</type>
   </animal>
   <animal>
      <type>fish</type> <-- Error here
   </animal>
</example>

我知道这可以限制属性,但这可以用元素吗?

0 个答案:

没有答案