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

Descrizione

Se un attributo è specificato IMPLIED, si può fornire un valore predefinito qualora tale attributo non sia specificato.

DTD


Entrambi gli attributi sono facoltativi. Vengono indicati i loro valori predefiniti:

<!ELEMENT XXX (AAA+, BBB+)>
<!ELEMENT AAA (#PCDATA)>
<!ELEMENT BBB (#PCDATA)>
<!ATTLIST AAA 
         true ( yes | no ) "yes">
<!ATTLIST BBB 
   month NMTOKEN "1">      
   

Documenti validiInizio


I valori di true sono rispettivamente yes, no e yes. I valori di month sono rispettivamente 8, 2 ed 1:

 <!DOCTYPE XXX SYSTEM "tutorial.dtd">

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