如需读取、更新、创建或者操作某个XML文档,则需要XML解析器。
实例
解析XML文件 - 跨浏览器的实例
本例是一个跨浏览器的实例,把某个XML文档("note.xml")载入XML解析器。
html
body
script type="text/vbscript"
set xmlDoc=CreateObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.load("/example/xmle/xmle_xml_note.xml")
document.write("h1Traversing the XML nodes/h1")
for each x in xmlDoc.documentElement.childNodes
document.write("b" & x.nodename & "/b")
document.write(": ")
document.write(x.text)
document.write("brbr")
next
/script
/body
/html[ 查看全文 ]