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);
}
});`
jFeed 官网
http://www.hovinne.com/blog/index.php/2007/07/15/132-jfeed-jquery-rss-atom-feed-parser-plugin
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。