当前位置: 首页 > 网络学院 > XML相关教程 > XML DOM > xml 属性
The xml property returns the XML of an attribute.
xml属性的作用是:返回一个属性的XML。
attrObject.xml |
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 XML of the category attribute in the XML document:
下面的代码片断将显示XML文档中的category属性的XML:
xmlDoc=loadXMLDoc("books.xml"); var x=xmlDoc.getElementsByTagName('book'); for(i=0;i<x.length;i++) { document.write("<xmp>" + x.item(i).attributes[0].xml + "</xmp>"); document.write("<br />"); } |
Output:
输出结果:
|
Display the XML of an attribute
显示一个属性的XML