DOM Entity物件notationName屬性

2019-10-16 23:19:10

DOM Entity物件notationName屬性給出未解析實體的符號和值的名稱。 對於已解析的實體,其值為null

語法

以下是使用notationName屬性的語法。

entity.nodeName

範例

檔案:notation.xml 的內容如下 -

<?xml version="1.0"?>
<!DOCTYPE address [
   <!ELEMENT address (#PCDATA)>
   <!NOTATION name PUBLIC "yiibai">
   <!ATTLIST address category NOTATION (name) #REQUIRED>
]>

<address name = "yiibai">Haikou Xindazhou</address>

以下範例演示了notationName屬性的用法 -

<!DOCTYPE html>
<html>
   <meta charset="utf-8"/>
    <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("/notation.xml");

         x = xmlDoc.getElementsByTagName('address');
         document.write("屬性標記的名稱是 : ")
         document.write(x.item(0).attributes[0].nodeName);
         document.write("<br>")
         document.write("屬性標記的值是 : ");
         document.write(x.item(0).attributes[0].nodeValue);
      </script>
   </body>
</html>

執行上面範例程式碼,得到以下結果 -