网校上线了!
网校开发及拥有的课件范围涉及公务员、财会类、外语类、外贸类、学历类、
职业资格类、计算机类、建筑工程类、等9大类考试的在线网络培训辅导。
本文实例讲述了使用jquery解析XML的方法,分享给大家供大家参考之用。具体方法如下:
一、xml文件结构:books.xml
view sourceprint?01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
二、页面代码:
view sourceprint?01
02
03
04
05
06
07
08 $(function(){
09 $.post('books.xml',function(data){
10 //查找所有的book节点
11 var s="";
12 $(data).find('book').each(function(i){
13 var id=$(this).attr('id');
14 var name=$(this).children('name').text();
15 var author=$(this).children('author').text();
16 var price=$(this).children('price').text();
17 s+=id+" "+name+" "+author+" "+price+"
";
18 });
19 $('#mydiv').html(s);
20 });
21 });
22
23
24
25
26
27
更多信息请查看IT技术专栏