XML DOM setAttribute() 方法
❮ 元素对象
示例
以下代码片段将 "books.xml" 加载到 xmlDoc 中,并在所有 <book> 元素中添加 "edition" 属性
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
myFunction(this);
}
};
xhttp.open("GET", "books.xml", true);
xhttp.send();
function myFunction(xml) {
var x, i, xmlDoc, txt;
xmlDoc = xml.responseXML;
txt = "";
x = xmlDoc.getElementsByTagName('title');
// 为每个 title 元素添加一个新属性
for (i = 0; i < x.length; i++) {
x[i].setAttribute("edition", "first");
}
// 输出标题和版本值
for (i = 0; i < x.length; i++) {
txt += x[i].childNodes[0].nodeValue +
" - Edition: " +
x[i].getAttribute('edition') + "<br>";
}
document.getElementById("demo").innerHTML = txt;
}
输出
Everyday Italian - Edition: first
Harry Potter - Edition: first
XQuery Kick Start - Edition: first
Learning XML - Edition: first
自己尝试 »
定义和用法
setAttribute() 方法添加一个新属性。
如果元素中已经存在具有该名称的属性,则其值将更改为 value 参数的值
语法
elementNode.setAttribute(name,value)
参数 | 描述 |
---|---|
name | 必需。指定要设置的属性的名称 |
value | 必需。指定要设置的属性的值 |
自己尝试演示
❮ 元素对象