DOM - Atributo de objeto DocumentType - notación

Las notaciones de atributos que contienen las notaciones declaradas en la DTD.

Ejemplo

El contenido de notation.xml es el siguiente:

<?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>

El siguiente ejemplo demuestra el uso del atributo de notaciones :

<!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>

Ejecución

Guarde este archivo como documenttype_notations.html en la ruta del servidor (este archivo y notation.xml deben estar en la misma ruta en su servidor). Obtendremos el resultado como se muestra a continuación:

notations: undefined
Esta recopilación es muy escasamente compatible con los navegadores, pero no hay otra forma de recuperar estos datos.