DOM Node物件lookupPrefix()
方法返回名稱空間URI的當前名稱空間中定義的最接近的字首。 如果找到則返回關聯的名稱空間字首,如果沒有找到則返回null
。
語法
以下是lookupPrefix
方法的使用語法。
nodeObject.lookupPrefix(DOMString namespaceURI)
引數
namespaceURI
- 基於此引數返回字首,它是DOMString
型別。返回值
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>
以下範例演示了lookupPrefix()
方法的用法,檔案:lookupprefix.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("lookupPrefix is : ")
document.write(y.lookupPrefix("http://localhost/technical/"));
</script>
</body>
</html>
執行上面範例程式碼,得到以下結果 -