DOM - Atributo de objeto de entidade - notationName
O atributo notationName fornece o nome da notação e o valor de uma entidade não analisada. Para as entidades analisadas, seu valor é nulo.
Sintaxe
A seguir está a sintaxe para o uso do atributo notationName .
----------
Exemplo
O conteúdo do notation.xml é o seguinte -
<?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>
O exemplo a seguir demonstra o uso do 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>
Execução
Salve este arquivo como entityattribute_notations.htm no caminho do servidor (este arquivo e notation.xml devem estar no mesmo caminho em seu servidor). Obteremos a saída conforme mostrado abaixo -
Name of the attribute notation is : name
Value of the attribute notation is : Tanmay