XML DOM - Oggetto DocumentType
- Pagina precedente Document DOM
- Pagina successiva DOM DOMException
L'oggetto DocumentType può fornire un'interfaccia per le entità definite da XML.
Oggetto DocumentType
Ogni documento ha un attributo DOCTYPE, il cui valore può essere null o un oggetto DocumentType.
L'oggetto DocumentType può fornire un'interfaccia per le entità definite da XML.
IE: Internet Explorer: F: Firefox: O: Opera: W3C: World Wide Web Consortium (standard Internet)
Proprietà dell'oggetto DocumentType
Proprietà | Descrizione | IE | F | O | W3C |
---|---|---|---|---|---|
entities | NamedNodeMap che può restituire le entità dichiarate nel DTD | 6 | No | 9 | Sì |
internalSubset | Restituisce l'DTD interno come stringa | No | No | No | Sì |
name | Restituisce il nome del DTD | 6 | 1 | 9 | Sì |
notations | NamedNodeMap che può restituire i simboli (notation) dichiarati nel DTD | 6 | No | 9 | Sì |
systemId | Identificatore di sistema che può restituire DTD esterna | No | 1 | 9 | Sì |
- Pagina precedente Document DOM
- Pagina successiva DOM DOMException