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

2018-08-05 16:34 更新

XML DOM removeAttributeNode() 方法


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

定義和用法

removeAttributeNode() 方法刪除指定的屬性節(jié)點(diǎn)。

如果屬性的默認(rèn)值是在 DTD 中定義,那么新屬性出現(xiàn)時(shí)會(huì)帶有該默認(rèn)值。

該函數(shù)返回要?jiǎng)h除的屬性節(jié)點(diǎn)。

語(yǔ)法

elementNode.removeAttributeNode(node)

參數(shù) 描述
node 必需。要?jiǎng)h除的節(jié)點(diǎn)。


實(shí)例

下面的代碼片段使用 loadXMLDoc() 把 "books.xml" 載入 xmlDoc 中,并刪除所有 <book> 元素的 "category" 屬性節(jié)點(diǎn):

實(shí)例

xmlDoc=loadXMLDoc("books.xml");

x=xmlDoc.getElementsByTagName('book');

for(i=0;i<x.length;i++)
{
attnode=x.item(i).getAttributeNode("category");
old_att=x.item(i).removeAttributeNode(attnode);
document.write("Removed attribute: " + old_att.name + "
");
}

輸出:

Removed attribute: category
Removed attribute: category
Removed attribute: category
Removed attribute: category

嘗試一下 ?

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

掃描二維碼

下載編程獅App

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

編程獅公眾號(hào)