如何使用jquery动态读取RSS

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用jquery动态读取RSS相关的知识,希望对你有一定的参考价值。

  1. //The easiest way would be to use the Google AJAX Feed API. They have a really simple example, which suits what you want nicely:
  2.  
  3. <script type="text/javascript" src="http://www.google.com/jsapi"></script>
  4. <script type="text/javascript">
  5.  
  6. google.load("feeds", "1");
  7.  
  8. function initialize() {
  9. var feed = new google.feeds.Feed("http://www.digg.com/rss/index.xml");
  10. feed.load(function(result) {
  11. if (!result.error) {
  12. var container = document.getElementById("feed");
  13. for (var i = 0; i < result.feed.entries.length; i++) {
  14. var entry = result.feed.entries[i];
  15. var div = document.createElement("div");
  16. div.appendChild(document.createTextNode(entry.title));
  17. container.appendChild(div);
  18. }
  19. }
  20. });
  21. }
  22. google.setOnLoadCallback(initialize);
  23.  
  24. </script>
  25. <div id="feed"></div>
  26.  
  27. //Of course, you can mix jQuery with the API instead of using native DOM calls.

以上是关于如何使用jquery动态读取RSS的主要内容,如果未能解决你的问题,请参考以下文章

阅读网页内容(可能是RSS)

如何在 CSS 选择器或 jQuery 中处理 XML 命名空间?

从C#SyndicationFeed中读取所有rss项

如何使用 RSS Feed URL 构建 Intent 以打开 Podcast 应用程序?

如何制作“空”的 RSS 提要

使用ReactiveCocoa开发RSS阅读器