jquery.zrssfeed.min.js 的回调
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 文档:
查看此来源 使用示例页面
according to the documentation:
see source of this example-page for usage