为什么 DTD 不能指定孙节点的顺序?

发布于 2024-11-29 13:44:24 字数 522 浏览 0 评论 0原文

<nodes>
    <x><a/></x>
    <x><b/></x>
    <x><c/></x>
    <x><d/></x>
</nodes>

中应该有一个 后跟一个 < b/> 按此顺序。

我希望 DTD 有点像这样:

<!ELEMENT x (a|b|c|d)>
<!ELEMENT nodes (x(a),x(b),x(c),x(d))>

DTD 是否可以指定孙节点的顺序?

<nodes>
    <x><a/></x>
    <x><b/></x>
    <x><c/></x>
    <x><d/></x>
</nodes>

within <nodes> there should be a <x><a/></x> followed by a <x><b/></x> and <x><c/></x> and <x><d/></x> in that order.

I want the DTD to be sort of like this:

<!ELEMENT x (a|b|c|d)>
<!ELEMENT nodes (x(a),x(b),x(c),x(d))>

Is it possible for DTDs to specify the order of grandchild nodes?

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

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

发布评论

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

评论(1

作业与我同在 2024-12-06 13:44:24

不,您不能指定孙子的顺序。您仅定义所声明元素的内容模型。

你最好消除 x:

<!ELEMENT nodes (a,b,c,d)>

XML:

<nodes>
  <a/>
  <b/>
  <c/>
  <d/>
</nodes>

No, you can't specify the order of grandchildren. You're only defining the content model of the element you're declaring.

You'd be better off eliminating x:

<!ELEMENT nodes (a,b,c,d)>

XML:

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