使用 Jquery 将 RSS 提要解析为 XML?
谁能推荐将 RSS 提要解析为变量的最佳方法,以便我可以在样式页面中使用?
我想以一种可以使用前两个故事来显示图像/故事链接的方式解析 RSS 新闻提要 - 然后进一步链接以仅显示故事标题,一旦单击将显示相应的故事。因此,我需要一种解析方法,允许我自定义提要,而不是在页面上以 HTML 形式呈现它。
任何想法不胜感激!
干杯 保罗
Can anyone recommend the best way to parse an RSS feed into variables so that I can use in a styled page?
I would like to parse an RSS news feed in a way that I can use the first two stories to show images/story links - then further links to show story titles only, which once clicked will show the corresponding story. Therefore I need a parsing method that would allow me to customize the feed rather than render it in HTML on the page.
Any ideas gratefully appreciated!
Cheers
Paul
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RSS 是一种 XML 格式,并且可以使用 jQuery 在 HTML 文档上使用的相同 DOM 选择器来遍历 XML。
像
$('item').slice(0,1)
这样的东西应该可以让你获得前两项。RSS is an XML format, and XML can be traversed using the same DOM selectors jQuery uses on an HTML document.
Something like
$('item').slice(0,1)
should get you the first two items.