使用jquery解析XML示例代码

这篇文章通过示例为大家介绍了使用jquery解析XML的方法,经测试比较实用,需要的朋友可以参考下

xml文件结构:books.xml

<?xml version="1.0" encoding="UTF-8"?> <root> <book> <name>深入浅出extjs</name> <author>张三</author> <price>88</price> </book> <book> <name>锋利的jQuery</name> <author>李四</author> <price>99</price> </book> <book> <name>深入浅出flex</name> <author>王五</author> <price>108</price> </book> <book> <name>java编程思想</name> <author>钱七</author> <price>128</price> </book> </root>

页面代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>jquery解析xml</title> <script type="text/javascript" src="https://www.jb51.net/js/jquery-1.4.2.min.js"></script> <script type="text/javascript"> $(function(){ $.post('books.xml',function(data){ //查找所有的book节点 var s=""; $(data).find('book').each(function(i){ var id=$(this).attr('id'); var name=$(this).children('name').text(); var author=$(this).children('author').text(); var price=$(this).children('price').text(); s+=id+"&nbsp;&nbsp;&nbsp;&nbsp;"+name+"&nbsp;&nbsp;&nbsp;&nbsp;"+author+"&nbsp;&nbsp;&nbsp;&nbsp;"+price+"<br>"; }); $('#mydiv').html(s); }); }); </script> </head> <body> <div></div> </body> </html>

效果图:

您可能感兴趣的文章:

相关文章

最新评论

站长推荐

正版 Windows 10

正版Windows 10 家庭/专业版,操作系统限时抢购[¥1088→¥248]

站长推荐

正版 Office 软件

Microsoft Office 2016/2019/365 正版最低价仅需[ ¥148元]

大家感兴趣的内容

最近更新的内容

常用在线小工具

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgsxws.html