我找不到此插件的下载链接:http://plugins.jquery.com/project/jgfeed
有人能帮助我吗?
答案 0 :(得分:6)
我不得不提起the google cache of the page来找到它,这是一个链接:
http://plugins.jquery.com/files/jGFeed.zip
你并不是愚蠢的问,有人真的需要解决这个问题而且速度很快,你无法下载的插件网站只是完全没用。< / p>
如果其他人现在需要其他插件,我建议找到该页面,然后gooling cache:urlOfPluginPage
以获取搜索结果中的缓存版本...不确定这将在缓存过期时有多长时间,但是现在好于什么。
答案 1 :(得分:3)
嗯,作为替代方案,您可以从其他地方获取文件。比如,在这里说:http://bobcravens.com/demos/RssDemo/index.html
它只有.68kb,所以我想如果我只是在这里发布整个内容你们都不介意:
/*
* jGFeed 1.0 - Google Feed API abstraction plugin for jQuery
*
* Copyright (c) 2009 jQuery HowTo
*
* Licensed under the GPL license:
* http://www.gnu.org/licenses/gpl.html
*
* URL:
* http://jquery-howto.blogspot.com
*
* Author URL:
* http://me.boo.uz
*
*/
(function($){$.extend({jGFeed:function(url,fnk,num,key){if(url==null){return false;}var gurl="http://ajax.googleapis.com/ajax/services/feed/load?v=1.0&callback=?&q="+url;if(num!=null){gurl+="&num="+num;}if(key!=null){gurl+="&key="+key;}$.getJSON(gurl,function(data){if(typeof fnk=="function"){fnk.call(this,data.responseData.feed);}else{return false;}});}});})(jQuery);