XML DOM lookupPrefix() 方法
❮ 元素对象
示例
以下代码片段将 "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://w3schools.org.cn/children/");
}
输出
c
尝试一下 »
定义和用法
lookupPrefix() 方法返回当前节点上与指定的命名空间 URI 匹配的前缀。
语法
elementNode.lookupPrefix(URI)
参数 | 描述 |
---|---|
URI | 必需。要查找的前缀的命名空间 URI |
❮ 元素对象