可能重复:
DTD 元素类型问题
这是否可以限制具有 DTD 的元素上的值?
在此示例中,我想将动物类型限制为仅猫或狗:
<example>
<animal>
<type>cat</type>
</animal>
<animal>
<type>dog</type>
</animal>
<animal>
<type>fish</type> <-- Error here
</animal>
</example>
我知道这可以限制属性,但是这可能与元素有关吗?