XML DOM getAttribute() 方法

定义和用法

getAttribute() 方法通过名称获取属性的值。

语法:

  1. elementNode.getAttribute(name)
参数 描述
name 必需。规定从中取得属性值的属性。

提示和注释

对于使用名称空间的 XML 文档来说,需要使用 getAttributeNS() 方法

实例

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

下面的代码片段获取所有 <book> 元素中 "category" 属性的值:

  1. xmlDoc=loadXMLDoc("books.xml");
  2.  
  3. x=xmlDoc.getElementsByTagName('book');
  4.  
  5. for (i=0;i<x.length;i++)
  6. {
  7. document.write(x[i].getAttribute('category'));
  8. document.write("<br />");
  9. }

以上代码的输出:

  1. COOKING
  2. CHILDREN
  3. WEB
  4. WEB