jquery.zrssfeed.min.js 的回调

发布于 2024-12-10 18:05:07 字数 364 浏览 0 评论 0原文

zrssfeed.min.js 解析我的 Yahoo Pipes feed。

我需要从插件构建的结构中获取数据(我的意思是解析),然后将获取的数据插入到其他 DOM 元素中。

我需要一个回调函数来调用 jquery.zrssfeed.min.js 的函数,以便轻松地从其结构中获取数据。

如何调用回调函数?我的意思是我想要语法。我在哪里插入对函数的调用?

$(document).ready(function () {
  $('#test').rssfeed('http://feeds.reuters.com/reuters/oddlyEnoughNews', {
    limit: 5
  });
});

zrssfeed.min.js to parse my Yahoo Pipes feed.

I need to fetch data from the structure built by the the plugin (i mean Parsing) and then insert the fetched data into other DOM elements.

I need a callback function to the function call to jquery.zrssfeed.min.js so that fetch data from its structure would be at ease.

How do I call the callback function? I mean i want the syntax. Where do I insert the call to the function in here?

$(document).ready(function () {
  $('#test').rssfeed('http://feeds.reuters.com/reuters/oddlyEnoughNews', {
    limit: 5
  });
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱,才寂寞 2024-12-17 18:05:07

根据 文档

在此处输入图像描述

$(document).ready(function () {
  $('#test').rssfeed('http://feeds.reuters.com/reuters/oddlyEnoughNews', {
    limit: 5
   }, 
   function (e) {
        // there you go
   }
  });
});

查看此来源 使用示例页面

according to the documentation:

enter image description here

$(document).ready(function () {
  $('#test').rssfeed('http://feeds.reuters.com/reuters/oddlyEnoughNews', {
    limit: 5
   }, 
   function (e) {
        // there you go
   }
  });
});

see source of this example-page for usage

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文