首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

怎样写XSD资料5

2013-04-09 
怎样写XSD文件5根hellointeger且只能是5/7/9/hello注释掉的解释hello在0和100之间包含0不包含100/h

怎样写XSD文件5
根<hello>integer且只能是5/7/9</hello>
注释掉的解释<hello>在0和100之间包含0不包含100</hello>
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:simpleType name="myType">
<xs:restriction base="xs:integer">
<xs:enumeration value="5"/>
<xs:enumeration value="7"/>
<xs:enumeration value="9"/>
<!--
<xs:minExclusive value="0"/>
<xs:maxInclusive value="100"/>
-->
</xs:restriction>
</xs:simpleType>
<xs:element name="hello" type="myType"></xs:element>
</xs:schema>

热点排行