XML DOM xml 属性

Document 对象参考手册

定义和用法

xml 属性可返回节点及其后代的 XML。

语法:

  1. documentObject.xml

实例

在所有的例子中,我们将使用 XML 文件 books.xml,以及 JavaScript 函数 loadXMLDoc()

以下代码片段可显示XML文档的XML:

  1. xmlDoc=loadXMLDoc("books.xml");
  2. document.write("<xmp>" + xmlDoc.xml + "</xmp>");

输出:

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!-- Copyright yousite.com -->
  3. <!-- yousite.com bookstore example -->
  4. <bookstore>
  5. <book category="children">
  6. <title lang="en">Harry Potter</title>
  7. <author>J K. Rowling</author>
  8. <year>2005</year>
  9. <price>29.99</price>
  10. </book>
  11. <book category="cooking">
  12. <title lang="en">Everyday Italian</title>
  13. <author>Giada De Laurentiis</author>
  14. <year>2005</year>
  15. <price>30.00</price>
  16. </book>
  17. <book category="web" cover="paperback">
  18. <title lang="en">Learning XML</title>
  19. <author>Erik T. Ray</author>
  20. <year>2003</year>
  21. <price>39.95</price>
  22. </book>
  23. <book category="web">
  24. <title lang="en">XQuery Kick Start</title>
  25. <author>James McGovern</author>
  26. <author>Per Bothner</author>
  27. <author>Kurt Cagle</author>
  28. <author>James Linn</author>
  29. <author>Vaidyanathan Nagarajan</author>
  30. <year>2003</year>
  31. <price>49.99</price>
  32. </book>
  33. </bookstore>

Document 对象参考手册