JS加载xml文档实例books.xml复制代码 代码如下:<?xml version="1.0" encoding="ISO-8859-1"?> <bookstore> <book category="children"> <title lang="en">www.jb51.net</title> <author>J K. Rowling</author> <year>2005</year> <price>29.99</price> </book> <book category="cooking"> <title lang="en">Everyday Italian</title> <author>Giada De Laurentiis</author> <year>2005</year> <price>30.00</price> </book> <book category="web" cover="paperback"> <title lang="en">Learning XML</title> <author>Erik T. Ray</author> <year>2003</year> <price>39.95</price> </book> <book category="web"> <title lang="en">XQuery Kick Start</title> <author>James McGovern</author> <author>Per Bothner</author> <author>Kurt Cagle</author> <author>James Linn</author> <author>Vaidyanathan Nagarajan</author> <year>2003</year> <price>49.99</price> </book> </bookstore>loadxml.htm复制代码 代码如下:<html> <head> <script> try //Internet Explorer { xmlDoc=new ActiveXObject("Microsoft.XMLDOM"); } catch(e) { try //Firefox, Mozilla, Opera, etc. { xmlDoc=document.implementation.createDocument("","",null); } catch(e) {alert(e.message)} } try { xmlDoc.async=false; xmlDoc.load("books.xml"); document.write(xmlDoc.getElementsByTagName("title")[0].childNodes[0].nodeValue); } catch(e){alert(e.message);} </script> </head> <body> </body> </html> 下面的是加载与解析xml文件的例子,但xml是自定义的字符串,一般在后台语言中用的到。
W3Schools Internal Note
To:
From:
Message:
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]如果看完了上面的实例可以看下下面的文章。http://www.jb51.net/article/14604.htm
推荐阅读
JavaScript Cookie显示用户上次访问的时间和次数
httml代码: 复制代码 代码如下: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ut>>>详细阅读
本文标题:js 加载并解析XML字符串的代码
地址:http://www.17bianji.com/kaifa2/JS/27516.html
1/2 1