XML DOM setAttribute() 方法——Element 對(duì)象

2018-08-05 16:36 更新

XML DOM setAttribute() 方法


Element 對(duì)象參考手冊(cè) Element 對(duì)象

定義和用法

setAttribute() 方法添加新屬性。

如果元素中已經(jīng)存在指定名稱的屬性,它的值更改為 value 參數(shù)的值。

語(yǔ)法

elementNode.setAttribute(name,value)

參數(shù) 描述
name 必需。規(guī)定要設(shè)置的屬性的名稱。
value 必需。規(guī)定要設(shè)置的屬性的值。


實(shí)例

下面的代碼片段使用 loadXMLDoc() 把 "books.xml" 載入 xmlDoc 中,并向所有 <book> 元素添加 "edition" 屬性:

實(shí)例

xmlDoc=loadXMLDoc("books.xml");

x=xmlDoc.getElementsByTagName("book");

for(i=0;i<x.length;i++)
{
x.item(i).setAttribute("edition","first");
}

//Output book title and edition value
x=xmlDoc.getElementsByTagName("title");
for (i=0;i<x.length;i++)
{
document.write(x[i].childNodes[0].nodeValue);
document.write(" - Edition: ");
document.write(x[i].parentNode.getAttribute('edition'));
document.write("
");
}

輸出:

Everyday Italian - Edition: FIRST
Harry Potter - Edition: FIRST
XQuery Kick Start - Edition: FIRST
Learning XML - Edition: FIRST

嘗試一下 ?

嘗試一下 Demos

setAttribute() - 改變屬性的值


Element 對(duì)象參考手冊(cè) Element 對(duì)象
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)