XML DOM attributes 属性
定义和用法
attributes 属性返回包含被选节点属性的 NamedNodeMap。
如果被选节点不是元素,则该属性返回 NULL。
语法
elementNode.attributes
提示和注释
提示:该属性仅用于 element 节点。
实例 1
下面的代码片段使用 loadXMLDoc() 把 "books.xml" 载入 xmlDoc 中,并取得 "books.xml" 中第一个 <title> 元素的属性的数量:
xmlDoc=loadXMLDoc("books.xml");
x=xmlDoc.getElementsByTagName("book")[0].attributes;
document.write(x.length);
x=xmlDoc.getElementsByTagName("book")[0].attributes;
document.write(x.length);
上面的代码将输出:
1
实例 2
下面的代码片段使用 loadXMLDoc() 把 "books.xml" 载入 xmlDoc 中,并取得第一个 <book> 元素中 "category" 属性的值:
xmlDoc=loadXMLDoc("books.xml");
x=xmlDoc.getElementsByTagName("book")[0].attributes;
att=x.getNamedItem("category");
document.write(att.value);
x=xmlDoc.getElementsByTagName("book")[0].attributes;
att=x.getNamedItem("category");
document.write(att.value);
上面的代码将输出:
COOKING
版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com