获取元素的属性
- <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")[0].attributes;
- document.write(x.getNamedItem("category").nodeValue);
- document.write("<br />" + x.length);
- </script>
- </body>
- </html>