DOM - Attributo oggetto DocumentType - nome

L'attributo name () restituisce il nome della DTD che è scritto immediatamente accanto alla parola chiave! DOCTYPE.

Sintassi

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

documentObj.doctype.name

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

<!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/address_internal_dtd.xml");
         document.write("The name next to the keyword doctype is:"+ xmlDoc.doctype.name);
      </script>
   </body>
</html>

Esecuzione

Salva questo file come documenttype_name.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 -

The name next to the keyword doctype is: address