XML DOM removeAttributeNode() 方法

定义和用法

removeAttributeNode() 方法从元素中删除指定的属性节点。

语法:

  1. elementNode.removeAttributeNode(node)
参数 描述
node 必需。要删除的节点。

返回值

删除的 Attr 节点。

说明

该方法从当前元素的属性集合中删除(并返回)一个 Attr 节点。如果 DTD 给删除的属性设置了默认值,那么该方法将添加一个新的 Attr 节点,表示这个默认值。用 removeAttribute() 方法代替该方法往往会更简单。

实例

在所有的例子中,我们将使用 XML 文件 books.xml,以及 JavaScript 函数 loadXMLDoc()

下面代码片段从 "books.xml" 中的所有 <book> 元素中删除 "category" 属性:

  1. xmlDoc=loadXMLDoc("books.xml");
  2.  
  3. x=xmlDoc.getElementsByTagName('book');
  4.  
  5. for(i=0;i<x.length;i++)
  6. {
  7. attnode=x.item(i).getAttributeNode("category");
  8. old_att=x.item(i).removeAttributeNode(attnode);
  9. document.write("Removed attribute: " + old_att.name + "<br />");
  10. }

输出:

  1. Removed attribute: category
  2. Removed attribute: category
  3. Removed attribute: category
  4. Removed attribute: category