pos机都能刷信用卡吗:根据news.xsd写一个news.xml文档,元素内容要符合schema文件的定义,具体内容自己编辑。

来源:百度文库 编辑:杭州交通信息网 时间:2024/04/29 16:43:42
<?xml version="1.0" ?>
- <schema xmlns="http://www.w3.org/2000/10/XMLSchema">
- <element name="material">
- <complexType>
- <sequence>
<element ref="news" minOccurs="1" maxOccurs="unbounded" />
</sequence>
</complexType>
</element>
- <element name="news">
- <complexType>
- <sequence>
<element ref="title" minOccurs="1" maxOccurs="1" />
<element ref="content" minOccurs="1" axOccurs="1" />
<element ref="time" minOccurs="1" maxOccurs="1" />
</sequence>
</complexType>
</element>
<element name="title" type="string" />
<element name="content" type="string" />
<element name="time" type="string" />
</schema>