实例首页
自学教程
IT工具箱
源代码
下载代码
上下布局
点击运行 >
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>自学教程(runoops.com)</title> <script src="//demo.runoops.com/sources/xml/loadxmldoc.js"></script> </head> <body> <script> xmlDoc = loadXMLDoc("//demo.runoops.com/sources/xml/books.xml"); x = xmlDoc.getElementsByTagName('book'); for (i = 0; i < x.length; i++) { while (x[i].attributes.length > 0) { attnode = x[i].attributes[0]; old_att = x[i].removeAttributeNode(attnode); document.write("Removed: " + old_att.nodeName) document.write(": " + old_att.nodeValue) document.write("<br>") } } </script> </body> </html>
运行结果: