jQuery的RSS解析器 jFeed
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); } });
用户评论
怎么个用法?怎么不写一个样例?坑啊。