DOM - Attributo oggetto DocumentType - notazione

Le notazioni degli attributi che contengono le notazioni dichiarate nella DTD.

Esempio

I contenuti di notation.xml sono i seguenti:

<?xml version = "1.0"?>
<!DOCTYPE address [
   <!ELEMENT address (#PCDATA)>
   <!NOTATION name PUBLIC "Tanmay">
   <!ATTLIST address category NOTATION (name) #REQUIRED>
]>

<address name = "Tanmay">Hello world!!!!!!</address>

L'esempio seguente dimostra l'utilizzo dell'attributo notations :

<!DOCTYPE html>
   <head>
      <script>
         function loadXMLDoc(filename) {
            if (window.XMLHttpRequest) {
               xhttp = new XMLHttpRequest();
            } else // code for IE5 and IE6 {
               xhttp = new ActiveXObject("Microsoft.XMLHTTP");
            }
            xhttp.open("GET",filename,false);
            xhttp.send();
            return xhttp.responseXML;
         }
      </script>
   </head>
   <body>
      <script>
         xmlDoc = loadXMLDoc("/dom/notation.xml");
         var notations = xmlDoc.doctype.notations;
         document.write("notations: "+notations);
         document.write("Item "+notations.getNamedItem('Tanmay'));
      </script>
   </body>
</html>

Esecuzione

Salvare questo file come documenttype_notations.html nel percorso del server (questo file e notation.xml dovrebbero trovarsi sullo stesso percorso nel server). Otterremo l'output come mostrato di seguito -

notations: undefined
Questa raccolta è scarsamente supportata dai browser, ma non c'è altro modo per recuperare questi dati.