DOM - Attributo oggetto DocumentType - entità
Le entità attributo restituiscono un oggetto NamedNodeMap contenente le entità generali, sia esterne che interne, dichiarate nel DTD.
Sintassi
Di seguito è riportata la sintassi per l'utilizzo dell'attributo entità .
documentObj.doctype.entities
Esempio
Il contenuto di address_internal_dtd.xml è il seguente:
<?xml version = "1.0" encoding = "UTF-8" standalone = "no"?>
<!DOCTYPE address [
<!ELEMENT address (name,company,phone)>
<!ELEMENT name (#PCDATA)>
<!ELEMENT company (#PCDATA)>
<!ELEMENT phone (#PCDATA)>
]>
<address>
<name>Tanmay Patil</name >
<company>TutorialsPoint</company>
<phone>(011) 123-4567</phone>
</address>
L'esempio seguente dimostra l'utilizzo dell'attributo entità :
<!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/address_internal_dtd.xml");
x = xmlDoc.doctype.entities;
document.write("Nodename is: " + xmlDoc.nodeName);
document.write("<br>");
document.write(" nodetype is: " + xmlDoc.nodeType + "<br>");
y = xmlDoc.documentElement;
document.write("Nodename is: " + y.nodeName);
document.write("<br>");
document.write(" nodetype is: " + y.nodeType + "<br>");
</script>
</body>
</html>
Esecuzione
Salva questo file come documenttype_entities.html sul percorso del server (questo file e address_internal_dtd.xml dovrebbero trovarsi sullo stesso percorso nel tuo server). Otterremo l'output come mostrato di seguito -
Nodename is: #document
nodetype is: 9
Nodename is: address
nodetype is: 1