获取节点的下一个同级元素
- <html>
- <head>
- <script type="text/javascript" src="/example/xdom/loadxmldoc.js">
- </script>
- <script type="text/javascript">
- //check if the first node is an element node
- function get_nextSibling(n)
- {
- y=n.nextSibling;
- while (y.nodeType!=1)
- {
- y=y.nextSibling;
- }
- return y;
- }
- </script>
- </head>
- <body>
- <script type="text/javascript">
- xmlDoc=loadXMLDoc("/example/xdom/books.xml");
- x=get_nextSibling(xmlDoc.getElementsByTagName("title")[0]);
- document.write(x.nodeName);
- </script>
- </body>
- </html>