DOM - Attributo oggetto entità - notationName

L'attributo notationName fornisce il nome della notazione e il valore per un'entità non analizzata. Per le entità analizzate il suo valore è nullo.

Sintassi

Di seguito è riportata la sintassi per l'utilizzo dell'attributo notationName .

----------

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 notationName :

<!DOCTYPE html>
<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");

         x = xmlDoc.getElementsByTagName('address');
         document.write("Name of the attribute notation is : ")
         document.write(x.item(0).attributes[0].nodeName);
         document.write("<br>")
         document.write("Value of the attribute notation is : ");
         document.write(x.item(0).attributes[0].nodeValue);
      </script>
   </body>
</html>

Esecuzione

Salva questo file come entityattribute_notations.htm nel percorso del server (questo file e notation.xml dovrebbero trovarsi sullo stesso percorso nel tuo server). Otterremo l'output come mostrato di seguito -

Name of the attribute notation is : name
Value of the attribute notation is : Tanmay