DOM - DocumentType Object Attribute - entities



The attribute entities return a NamedNodeMap object containing the general entities, both external and internal, declared in the DTD.

Syntax

Following is the syntax for the usage of the entities attribute.

documentObj.doctype.entities

Example

address_internal_dtd.xml contents are as below −

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

Following example demonstrates the usage of the entities attribute −

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

Execution

Save this file as documenttype_entities.html on the server path (this file and address_internal_dtd.xml should be on the same path in your server). We will get the output as shown below −

Nodename is: #document
nodetype is: 9
Nodename is: address
nodetype is: 1
dom_documenttype_object.htm
Advertisements