XML DOM setAttributeNS() 方法
❮ 元素对象
示例
以下代码片段将 "books_ns.xml" 加载到 xmlDoc 中,并在第一个 <book> 元素中添加一个 "edition" 属性
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];
var ns = "https://w3schools.org.cn/edition/";
x.setAttributeNS(ns, "edition", "first");
document.getElementById("demo").innerHTML =
x.getAttributeNS(ns,"edition");
}
输出
first
试一试 »
定义和用法
setAttributeNS() 方法添加一个新的属性(带命名空间)。
如果元素中已经存在具有该名称或命名空间的属性,则其值将更改为前缀和值参数的值。
语法
elementNode.setAttributeNS(ns,name,value)
参数 | 描述 |
---|---|
ns | 必需。指定要设置的属性的命名空间 URI |
name | 必需。指定要设置的属性的名称 |
value | 必需。指定要设置的属性的值 |
示例
以下代码片段将 "books_ns.xml" 加载到 xmlDoc 中,并更改第一个 <title> 元素的 "lang" 值
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (xhttp.readyState == 4 && xhttp.status == 200) {
myFunction(xhttp);
}
};
xhttp.open("GET", "books_ns.xml", true);
xhttp.send();
function myFunction(xml) {
var xmlDoc = xml.responseXML;
var x = xmlDoc.getElementsByTagName("title")[0];
var ns = "https://w3schools.org.cn/edition/";
x.setAttributeNS(ns, "c:lang", "italian");
document.getElementById("demo").innerHTML =
x.getAttributeNS(ns, "lang");
}
输出
italian
试一试 »
❮ 元素对象