1

我是 xml 的新手,所以如果有人能指出我这里出了什么问题,我会很高兴。

我基本上是在尝试验证表单中的 xml 文档

<?xml version="1.1" encoding="UTF-8"?>

<tag1>foo</tag1>
<tag2>bar</tag2>
<tree>
    <moreStuffBelow></moreStuffBelow>
    <!-- // -->
</tree>

并从 W3C 验证器收到这些错误消息:

Errors found while checking this document as XML!
document type does not allow element "tag2" here
document type does not allow element "tree" here

谢谢

4

2 回答 2

2

每个 XML 必须有一个根元素。在您的情况下,没有根元素。

根元素

于 2012-10-02T19:40:45.987 回答
1

所有 XML 都需要一个且只有一个根元素

<Something>
   <tag1>1</tag1>
   <tag2>Cipret</tag2>
   <tree>
       <moreStuffBelow></moreStuffBelow>
       <!-- // -->
   </tree>
</Something>
于 2012-10-02T19:38:45.287 回答