我有这个 XML
<button onclick="alert('submit')" replace="append" forid="loginbutton" id="btnLogin" >Click Me</button>
我有这个 XSD
<xs:element name="button" >
<xs:complexType mixed="true">
<xs:attribute name="forid" use="required" type="xs:string" />
<xs:attribute name="onclick" use="required" />
<xs:attribute name="id" use="optional" />
<xs:attribute name="replace" use="required">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="modify" />
<xs:enumeration value="append" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>
我想在这里做两件事
- 按钮内容文本在所有情况下都应该是强制性的
- 如果
replace
属性的值为“附加”,那么属性id
将是强制性的