-1

次のことを試しましたが、エラーが発生しました

<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xhtml="http://www.w3.org/1999/xhtml">   
    <xsd:import namespace="http://www.w3.org/1999/xhtml" schemaLocation="xhtml.xsd" />

    <xsd:element name="book" type="bookType"/>

    <xsd:complexType name="bookType">
        <xsd:all>
            <xsd:element name="title" type="xsd:string"/>
            <xsd:element name="author" type="xsd:string"/>
            <xsd:element ref="xhtml:pre"/>
            <xsd:element ref="xhtml:ul"/>
        </xsd:all>
    </xsd:complexType>
</xsd:schema>

にエラーを返す<xsd:element ref="xhtml:pre"/>

4

1 に答える 1

0

これを試して:

    <xsd:import namespace="http://www.w3.org/1999/xhtml" schemaLocation="http://www.w3.org/2002/08/xhtml/xhtml1-strict.xsd" />

インポートの代わりに。XML Spy で検証されます。

于 2012-10-09T19:58:58.517 に答える