我的第一个 DTD 出现问题

发布于 2024-10-27 06:02:03 字数 879 浏览 1 评论 0原文

嘿!

我的代码:

<!DOCTYPE email [
<!ELEMENT email (von,zu,titel,text,prior)>
<!ELEMENT von (#PCDATA)>
<!ELEMENT zu (#PCDATA)>
<!ELEMENT titel (#PCDATA)>
<!ELEMENT text (#PCDATA)>
<!ATTLIST prior type (#PCDATA) #REQUIRED >
]>
<email>
<von>[email protected]</von>
<zu>[email protected]</zu>
<titel>Hello</titel>
<text>Dear John....;-).</text>
<prior type="schnell"/>
</email>

错误:

The name token is required in the enumerated type list for the "type" attribute declaration.

请帮助!

Hy!

My Code:

<!DOCTYPE email [
<!ELEMENT email (von,zu,titel,text,prior)>
<!ELEMENT von (#PCDATA)>
<!ELEMENT zu (#PCDATA)>
<!ELEMENT titel (#PCDATA)>
<!ELEMENT text (#PCDATA)>
<!ATTLIST prior type (#PCDATA) #REQUIRED >
]>
<email>
<von>[email protected]</von>
<zu>[email protected]</zu>
<titel>Hello</titel>
<text>Dear John....;-).</text>
<prior type="schnell"/>
</email>

Error:

The name token is required in the enumerated type list for the "type" attribute declaration.

Please help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

故乡的云 2024-11-03 06:02:03
<!ATTLIST prior type CDATA #REQUIRED>

请参阅http://www.w3.org/TR/REC-xml/# NT-AttType 对于属性类型,那里没有 PCDATA。另外,不需要括号和#

<!ATTLIST prior type CDATA #REQUIRED>

See http://www.w3.org/TR/REC-xml/#NT-AttType for attribute types, there is no PCDATA there. Also, no need for brackets and #

无声情话 2024-11-03 06:02:03
<!ELEMENT prior EMPTY>
<!ATTLIST prior type NMTOKEN #REQUIRED>

您不仅需要修改 prior 的 ATTLIST 声明,还需要添加 prior 的元素声明。我对 type 属性使用了 CDATA 以外的类型,这样您就可以看到不同的内容。

<!ELEMENT prior EMPTY>
<!ATTLIST prior type NMTOKEN #REQUIRED>

Not only do you need to modify your ATTLIST declaration for prior, you also need to add the element declaration for prior. I used a type other than CDATA for the type attribute, just so you could see something different.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文