可能重复:
DTD element type problem
是否可以使用DTD限制元素的值?
在这个例子中,我想将动物类型仅限于猫或狗:
<example>
<animal>
<type>cat</type>
</animal>
<animal>
<type>dog</type>
</animal>
<animal>
<type>fish</type> <-- Error here
</animal>
</example>
我知道这可以限制属性,但这可以用元素吗?