XML DOM lookupPrefix() 方法
❮ Node 节点对象
实例
以下代码片段将"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关联的前缀。
浏览器支持
所有主要浏览器都支持lookupPrefix()方法。
注释: Internet Explorer 9及更早版本不支持此方法。
语法
nodeObject.lookupPrefix(namespaceURI)
参数
参数 | 类型 | 描述 |
---|---|---|
namespaceURI | String | 必需。指定要查找的命名空间URI |
返回值
类型 | 描述 |
---|---|
String | 与指定命名空间URI关联的前缀 |
技术细节
DOM 版本 | Core Level 3 Node Object |
---|
❮ Node 节点对象