首页 相关文章 XML入门教程:XML 解析器

XML入门教程:XML 解析器

如需读取、更新、创建或者操作某个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[ 查看全文 ]

2016-02-19 标签:

XML入门教程:XML 解析器的相关文章

手机页面
收藏网站 回到头部