XML模式:具有仅包含文本的属性的元素?

前端之家收集整理的这篇文章主要介绍了XML模式:具有仅包含文本的属性的元素?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我很难搜索这个。我如何在XML的XML模式文件中定义一个元素,如下所示:
<option value="test">sometext</option>

我不知道如何定义一个类型为xs:string的元素,并且还有一个属性

这里是我到目前为止:

<xs:element name="option">
    <xs:complexType>
        <xs:attribute name="value" type="xs:string" />
    </xs:complexType>
</xs:element>
尝试
<xs:element name="option" type="AttrElement" />

  <xs:complexType name="AttrElement">
    <xs:simpleContent>
      <xs:extension base="xs:string">
        <xs:attribute name="value" type="xs:string">
        </xs:attribute>
      </xs:extension>
    </xs:simpleContent>
  </xs:complexType>
原文链接:https://www.f2er.com/xml/294168.html

猜你在找的XML相关文章