nodeValue 属性用于获取节点的文本值。
getAttribute() 方法返回属性的值。
实例
下面的例子使用 XML 文件 books.xml。
函数 loadXMLDoc(),位于外部 JavaScript 中,用于加载 XML 文件。
获取元素的值
本例使用 getElementsByTagname() 获取 “books.xml” 中第一个 <title> 元素。
<html> <head> <script type="text/javascript" src="/example/xdom/loadxmldoc.js"></script> </head> <body> <script type="text/javascript"> xmlDoc=loadXMLDoc("/example/xdom/books.xml"); x=xmlDoc.getElementsByTagName("title")[0] y=x.childNodes[0]; document.write(y.nodeValue); </script> </body> </html>
获取属性的值
本例使用 getAttribute() 方法获取 “books.xml” 中第一个 <title> 元素的 “lang” 属性的值。
<html> <head> <script type="text/javascript" src="/example/xdom/loadxmldoc.js"> </script> </head> <body> <script type="text/javascript"> xmlDoc=loadXMLDoc("/example/xdom/books.xml"); txt=xmlDoc.getElementsByTagName("title")[0].getAttribute("lang"); document.write(txt); </script> </body> </html>
获取元素的值
在 DOM 中,每种成分都是节点。元素节点没有文本值。
元素节点的文本存储在子节点中。该节点称为文本节点。
获取元素文本的方法,就是获取这个子节点(文本节点)的值。
获取元素值
getElementsByTagName() 方法返回包含拥有指定标签名的所有元素的节点列表,其中的元素的顺序是它们在源文档中出现的顺序。
下面的代码通过使用 loadXMLDoc() 把 “books.xml” 载入 xmlDoc 中,并检索第一个 <title> 元素:
xmlDoc=loadXMLDoc("books.xml"); x=xmlDoc.getElementsByTagName("title")[0];
childNodes 属性返回子节点的列表。<title> 元素只有一个子节点,即一个文本节点。
下面的代码检索 <title> 元素的文本节点:
x=xmlDoc.getElementsByTagName("title")[0]; y=x.childNodes[0];
nodeValue 属性返回文本节点的文本值:
x=xmlDoc.getElementsByTagName("title")[0]; y=x.childNodes[0]; txt=y.nodeValue;
结果:txt = “Harry Potter”
<html> <head> <script type="text/javascript" src="/example/xdom/loadxmldoc.js"></script> </head> <body> <script type="text/javascript"> xmlDoc=loadXMLDoc("/example/xdom/books.xml"); x=xmlDoc.getElementsByTagName("title")[0] y=x.childNodes[0]; document.write(y.nodeValue); </script> </body> </html>
遍历所有 <title> 元素:
<html> <head> <script type="text/javascript" src="/example/xdom/loadxmldoc.js"></script> </head> <body> <script type="text/javascript"> xmlDoc=loadXMLDoc("/example/xdom/books.xml"); x=xmlDoc.getElementsByTagName('title'); for (i=0;i<x.length;i++) { document.write(x[i].childNodes[0].nodeValue); document.write("<br />"); } </script> </body> </html>
获取属性的值
在 DOM 中,属性也是节点。与元素节点不同,属性节点拥有文本值。
获取属性的值的方法,就是获取它的文本值。
可以通过使用 getAttribute() 方法或属性节点的 nodeValue 属性来完成这个任务。
获取属性值 – getAttribute()
getAttribute() 方法返回属性的值。
下面的代码检索第一个 <title> 元素的 “lang” 属性的文本值:
xmlDoc=loadXMLDoc("books.xml"); txt=xmlDoc.getElementsByTagName("title")[0].getAttribute("lang");
结果:txt = “en”
例子解释:
- 通过使用 loadXMLDoc() 把 “books.xml” 载入 xmlDoc 中
- 把 txt 变量设置为第一个 title 元素节点的 “lang” 属性的值
<html> <head> <script type="text/javascript" src="/example/xdom/loadxmldoc.js"> </script> </head> <body> <script type="text/javascript"> xmlDoc=loadXMLDoc("/example/xdom/books.xml"); txt=xmlDoc.getElementsByTagName("title")[0].getAttribute("lang"); document.write(txt); </script> </body> </html>
遍历所有 <book> 元素,并获取它们的 “category” 属性:
<html> <head> <script type="text/javascript" src="/example/xdom/loadxmldoc.js"> </script> </head> <body> <script type="text/javascript"> xmlDoc=loadXMLDoc("/example/xdom/books.xml"); x=xmlDoc.getElementsByTagName('book'); for (i=0;i<x.length;i++) { document.write(x[i].getAttribute('category')); document.write("<br />"); } </script> </body> </html>
获取属性值 – getAttributeNode()
getAttributeNode() 方法返回属性节点。
下面代码检索第一个 <title> 元素的 “lang” 属性的文本值:
xmlDoc=loadXMLDoc("books.xml"); x=xmlDoc.getElementsByTagName("title")[0].getAttributeNode("lang"); txt=x.nodeValue;
结果:txt = “en”
例子解释:
- 通过使用 loadXMLDoc() 把 “books.xml” 载入 xmlDoc 中
- 获取第一个 <title> 元素节点的 “lang” 属性节点
- 把 txt 变量设置为属性的值
<html> <head> <script type="text/javascript" src="/example/xdom/loadxmldoc.js"> </script> </head> <body> <script type="text/javascript"> xmlDoc=loadXMLDoc("/example/xdom/books.xml"); x=xmlDoc.getElementsByTagName("title")[0].getAttributeNode("lang"); txt=x.nodeValue; document.write(txt); </script> </body> </html>
循环所有 <book> 元素并获取它们的 “category” 属性:
<html> <head> <script type="text/javascript" src="/example/xdom/loadxmldoc.js"> </script> </head> <body> <script type="text/javascript"> xmlDoc=loadXMLDoc("/example/xdom/books.xml"); x=xmlDoc.getElementsByTagName('book'); for (i=0;i<x.length;i++) { document.write(x[i].getAttributeNode('category').nodeValue); document.write("<br />"); } </script> </body> </html>
作者:terry,如若转载,请注明出处:https://www.web176.com/xmldom/10837.html