DOM Node物件lookupNamespaceURI()方法

2019-10-16 23:20:17

DOM Node物件lookupNamespaceURI()方法從當前節點開始獲取與名稱空間字首關聯的名稱空間的URI。

語法

以下是使用lookupNamespaceURI方法的語法。

nodeObject.lookupNamespaceURI(DOMString prefix)

引數

  • prefix - 基於此引數,如果存在任何名稱,則返回uri,如果未找到,則返回null。它是DOMString型別。

返回值

  • 此方法返回關聯的名稱空間URI,如果未找到,則返回null

範例

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

<?xml version="1.0"?>
<Company>
   <Employee xmlns:e = "http://localhost/technical/" category = "technical">
      <e:FirstName>Max</e:FirstName>
      <e:LastName>Lee</e:LastName>
      <e:ContactNo>1234567890</e:ContactNo>
      <e:Email>[email protected]</e:Email>
   </Employee>

   <Employee xmlns:n = "http://localhost/non-technical/" category = "non-technical">
      <n:FirstName>Tianya</n:FirstName>
      <n:LastName>Su</n:LastName>
      <n:ContactNo>1234667898</n:ContactNo>
      <n:Email>[email protected]</n:Email>
   </Employee>
</Company>

以下範例演示了lookupNamespaceURI()方法的用法,檔案:lookupnamespaceuri.html -

<!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("/node_ns.xml");

         y = xmlDoc.getElementsByTagName("Employee")[0];
         document.write("lookupNameSpaceURI is : ")
         document.write(y.lookupNamespaceURI("e"));
      </script>
   </body>
</html>

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