举报投诉联系我们 手机版 热门标签 名动网
您的位置:名动网 > XML DOM attributes 属性

XML DOM attributes 属性

2023-04-28 00:20 XMLDOM教程

 XML DOM attributes 属性

XML DOM attributes 属性


Element 对象参考手册 Element 对象

定义和用法

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);

上面的代码将输出:

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);

上面的代码将输出:

COOKING


Element 对象参考手册 Element 对象
阅读全文
以上是名动网为你收集整理的 XML DOM attributes 属性全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 名动网 mdwl.vip 版权所有 联系我们