2012-02-21 56 views

回答

1

樣品解決問題的方法:

<?xml version="1.0" encoding="UTF-8"?> 
<grammar xmlns="http://relaxng.org/ns/structure/1.0" 
    datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes"> 
    <start> 
     <ref name="testDef"/> 
    </start> 
    <define name="testDef"> 
     <element name="test"> 
      <ref name="commonAttributes"/> 
     </element> 
    </define> 
    <define name="commonAttributes"> 
     <attribute name="id"> 
      <data type="ID"/> 
     </attribute> 
     <attribute name="otherCommonAttr"> 
      <data type="string"/> 
     </attribute> 
    </define> 
</grammar> 

你必須在每個元件中在上面的例子中的元件test申報共同屬性的定義的引用,等等。

相關問題