English | česky | Español | По-русски | Français | >> Italiano << | Deutsch | MagyarZVON > Tutorials > DTD Tutorial
>> Esempio 13 << | Precedente | Successivo | Contenuto

Descrizione

Nella DTD si possono specificare i valori consentiti per gli attributi.

DTD


Questa DTD definisce esattamente i valori permessi:

<!ELEMENT XXX (AAA+, BBB+)>
<!ELEMENT AAA (#PCDATA)>
<!ELEMENT BBB (#PCDATA)>
<!ATTLIST AAA 
         true ( yes | no ) #REQUIRED>
<!ATTLIST BBB 
   month (1|2|3|4|5|6|7|8|9|10|11|12) #IMPLIED>      
   

Documenti validiInizio


Tutti i valori sono specificati nella DTD:

 <!DOCTYPE XXX SYSTEM "tutorial.dtd">

<XXX>
   <AAA true="yes"/>
   <AAA true="no"/>
   <AAA true="yes"/>
   <BBB month="8" />
   <BBB month="2" />
   <BBB month="12" />
</XXX>

Documenti con erroriInizio


L'attributo true non può avere il valore "maybe", l'attributo month non può avere il valore "16" :

 <!DOCTYPE XXX SYSTEM "tutorial.dtd">

<XXX>
   <AAA true="yes"/>
   <AAA true="no"/>
   <AAA true="maybe"/>
   <BBB month="8" />
   <BBB month="2" />
   <BBB month="16" />
</XXX>