books.xsd
来自「asp入门到精通的源代码」· XSD 代码 · 共 24 行
XSD
24 行
<schema id="" targetNamespace="" xmlns="http://www.w3.org/1999/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<element name="book">
<complexType content="elementOnly">
<all>
<element name="title" minOccurs="0" type="string"/>
<element name="author">
<complexType content="elementOnly">
<all>
<element name="first-name" minOccurs="0" type="string"/>
<element name="last-name" minOccurs="0" type="string"/>
</all>
</complexType>
</element>
<element name="price" minOccurs="0" type="string"/>
</all>
<attribute name="genre" type="string"/>
<attribute name="style" type="string"/>
</complexType>
</element>
<annotation>
<appinfo></appinfo>
</annotation>
</schema>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?