XML DOM lookupPrefix() 方法
❮ Element 元素对象
实例
以下代码片段将"books_ns.xml" 加载到 xmlDoc 中,并查找给定命名空间URI的前缀:
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
myFunction(this);
}
};
xhttp.open("GET", "books_ns.xml", true);
xhttp.send();
function myFunction(xml) {
var xmlDoc = xml.responseXML;
var x =
xmlDoc.getElementsByTagName("book")[0];
document.getElementById("demo").innerHTML =
x.lookupPrefix("https://www.w3ccoo.com/children/");
}
输出:
c
亲自试一试 »
定义和用法
lookupPrefix() 方法返回在当前节点上匹配指定的命名空间 URI 的前缀。
语法
elementNode.lookupPrefix(URI)
参数 | 描述 |
---|---|
URI | 必需。要查找的前缀的命名空间 |
❮ Element 元素对象