XML DOM getAttribute() 方法
XML基础 2023-08-13 14:53:52小码哥的IT人生shichen
XML DOM getAttribute() 方法
定义和用法
getAttribute() 方法通过名称获取属性的值。
语法:
elementNode.getAttribute(name)
参数 | 描述 |
---|---|
name | 必需。规定从中取得属性值的属性。 |
提示和注释
对于使用名称空间的 XML 文档来说,需要使用 getAttributeNS() 方法。
实例
在所有的例子中,我们将使用 XML 文件 books.xml,以及 JavaScript 函数 loadXMLDoc()。
下面的代码片段获取所有 <book> 元素中 "category" 属性的值:
xmlDoc=loadXMLDoc("books.xml");
x=xmlDoc.getElementsByTagName('book');
for (i=0;i<x.length;i++)
{
document.write(x[i].getAttribute('category')
);
document.write("<br />");
}
以上代码的输出:
COOKING
CHILDREN
WEB
WEB
TIY
完整实例【getAttribute() - 获取指定属性的值】:
<html>
<head>
<script type="text/javascript" src="/demo/example/xdom/loadxmldoc.js">
</script>
</head>
<body>
<script type="text/javascript">
xmlDoc=loadXMLDoc("/demo/example/xdom/books.xml");
txt=xmlDoc.getElementsByTagName("title")[0].getAttribute("lang");
document.write(txt);
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html