Chinaunix首页 | 论坛 | 博客
  • 博客访问: 710945
  • 博文数量: 160
  • 博客积分: 8847
  • 博客等级: 中将
  • 技术积分: 1656
  • 用 户 组: 普通用户
  • 注册时间: 2010-11-25 16:46
个人简介

。。。。。。。。。。。。。。。。。。。。。。

文章分类

全部博文(160)

文章存档

2015年(1)

2013年(1)

2012年(4)

2011年(26)

2010年(14)

2009年(36)

2008年(38)

2007年(39)

2006年(1)

分类: Python/Ruby

2012-10-27 00:20:02


点击(此处)折叠或打开

  1. $(function(){
  2.     var html = '';
  3.     $.ajax({
  4.         url: '/chapter3/Recipe1/common.xml',
  5.         type: 'get',
  6.         dataType: 'xml',
  7.         success: function(data){
  8.             var books = $(data).find('book');
  9.             books.each(function(index, b){
  10.                 var name = $(b).find('name').text();
  11.                 var year = $(b).find('name').attr('year');
  12.                 html += '

    ' + name + '(' + year + ')' + '

    '
    ;
  13.                 $(b).find('story').each(function(i, s){
  14.                     var title = $(s).find('title').text();
  15.                     var quote = $(s).find('quote').text();
  16.                     html += '
      ';
    •                     html += '
    • ' + title + '
    • ';
    •                     html += '
    • ' + quote + '
    • ';
    •                     html += '
    '
    ;
  17.                 });
  18.             });
  19.             $('#result').html(html);
  20.             
  21.         },
  22.         error: function(error){
  23.             console.log(error.responseText);
  24.         }
  25.     });
  26.     //live 已经被废弃,使用on代替,on的功能实在是太强大了
  27.     $(document).on('click', 'h1', function(){
  28.         $(this).next('ul').toggle('fadeIn');
  29.     });
  30. });

阅读(4205) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~