编辑下面的代码:【加编码】
<html> <head> <script src="/demo/loadxmldoc.js"> </script> </head> <body> <script> xmlDoc=loadXMLDoc("books_ns.xml"); x=xmlDoc.getElementsByTagName('title'); for(i=0;i<x.length;i++) { document.write("Prefix: " + x.item(i).prefix); document.write("<br>"); document.write("Local name: " + x.item(i).localName); document.write("<br>"); document.write("Namespace URI: " + x.item(i).namespaceURI); document.write("<br>"); document.write("Base URI: " + x.item(i).baseURI); document.write("<br>"); document.write("<br>"); } </script> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂