如何限制 DTD 中 XML 标记属性的允许值?
我有一个 DTD,我想将一些属性的可能值限制为“是”或“否”。
<!ATTLIST node postgrad CDATA "">
我怎么做?
I have a DTD and I would like to limit a few attribute properties' possible values to, say, "yes" or "no".
<!ATTLIST node postgrad CDATA "">
How do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过定义属性 postgrad 可以具有值 yes 或 no:
这样就可以了 =)
By defining that the attribute postgrad can have values yes or no:
That will do it =)