DOM - Atributo de objeto de notação - publicID

O identificador público de uma notação ; ou null se nenhum identificador público for especificado.

Sintaxe

A seguir está a sintaxe para o uso do atributo publicID .

var pubid = document.doctype.publicId;

Exemplo

O conteúdo de notation_xhtml.xml é o seguinte -

<?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>
   <name>Tanmay Patil</name >
   <company>TutorialsPoint</company>
   <phone>(011) 123-4567</phone>
</address>

O exemplo a seguir demonstra o uso do atributo 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("The publicId asscoiated with the notation is:"+ xmlDoc.doctype.publicId);
      </script>
   </body>
</html>

Execução

Salve este arquivo como notationattribute_publicid.html no caminho do servidor (este arquivo e notation.xml devem estar no mesmo caminho em seu servidor). Obteremos a saída conforme mostrado abaixo -

The publicId asscoiated with the notation is: -//W3C//DTD XHTML 1.1//EN