DOM - Attributo oggetto DocumentType - publicId

L'attributo publicId restituisce l'identificatore pubblico del sottoinsieme esterno.

Sintassi

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

document.doctype.publicId;

Esempio

I contenuti di notation.xml sono i seguenti:

<?xml version = "1.0" encoding = "UTF-8" standalone = "no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" 
   "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<address id = "firstelement">
   <name>Tanmay Patil</name >
   <company>TutorialsPoint</company>
   <phone>(011) 123-4567</phone>
</address>

L'esempio seguente dimostra l'utilizzo dell'attributo publicId :

<!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_xhtml.xml");
         document.write("<b>publicid :</b> "+xmlDoc.doctype.publicId);
      </script>
   </body>
</html>

Esecuzione

Salva questo file come documenttype_publicid.html nel percorso del server (questo file e notation.xml dovrebbero trovarsi sullo stesso percorso nel tuo server). Otterremo l'output come mostrato di seguito -

publicid : -//W3C//DTD XHTML 1.1//EN