jFeed 是一个通用的 RSS/ATOM 解析器jQuery插件

 

jFeed 支持 RSS 0.91, 0.92, 1.0, 2.0 和 Atom 1.0 等格式。

使用方法:

jQuery.getFeed(options);
   
   参数:
   
   * url: the feed URL (required).
   * data: data to be sent to the server. See jQuery.ajax data property.
   * success: a function to be called if the request succeeds.
     The function gets passed one argument: the JFeed object.
   
   使用示例:
   
   jQuery.getFeed({
       url: 'rss.xml',
       success: function(feed) {
           alert(feed.title);
       }
   });

附原文件实例地址:http://download.csdn.net/source/2898662

相关文章:

  • 2022-02-08
  • 2022-12-23
  • 2021-09-09
  • 2021-05-01
  • 2021-12-28
  • 2021-11-13
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-11
  • 2021-10-04
  • 2022-12-23
  • 2019-01-16
相关资源
相似解决方案