当前位置: 首页 > 网络学院 > XML相关教程 > XML DOM > text 属性
The text property returns the text of an attribute.
text属性的作用是:返回一个属性的文本。
attrObject.text |
Note: This property is Internet Explorer-only!
注意点:仅IE支持这个属性。
In all examples, we will use the XML file books.xml, and the JavaScript function loadXMLDoc().
在所有案例中,我们将使用“books.xml”文件以及JavaScript 函数“loadXMLDoc()”。
The following code fragment displays the text of the category attribute in the XML document:
下面的代码片断将显示XML文档中的目录属性文本:
xmlDoc=loadXMLDoc("books.xml"); var x=xmlDoc.getElementsByTagName('book'); for(i=0;i<x.length;i++) { document.write(x.item(i).attributes[0].text); document.write("<br />"); } |
Output:
输出结果:
COOKING CHILDREN WEB WEB |
Display the text of an attribute
显示属性文本