DOM - Atributo de objeto de entidad - notationName
El atributo notationName proporciona el nombre de la notación y el valor de una entidad sin analizar. Para las entidades analizadas, su valor es nulo.
Sintaxis
A continuación se muestra la sintaxis para el uso del atributo notationName .
----------
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 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>
Ejecución
Guarde este archivo como entityattribute_notations.htm 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:
Name of the attribute notation is : name
Value of the attribute notation is : Tanmay