是否有任何 rss 阅读器脚本可以组合多个提要并在每 5 分钟或更短的时间内不断更新提要?我的网站需要这个脚本 http://www.dynamicdrive.com/dynamicindex18/gajaxrssdisplayer.htm
{
<script type="text/javascript" src="http://www.google.com/jsapi">
}
其中包括上述 google api,因此更新提要需要 1 小时
帮助将不胜感激
谢谢你
是否有任何 rss 阅读器脚本可以组合多个提要并在每 5 分钟或更短的时间内不断更新提要?我的网站需要这个脚本 http://www.dynamicdrive.com/dynamicindex18/gajaxrssdisplayer.htm
{
<script type="text/javascript" src="http://www.google.com/jsapi">
}
其中包括上述 google api,因此更新提要需要 1 小时
帮助将不胜感激
谢谢你
You can load multiple feeds like that
function someHandler(){
// some init code before this
var feed1 = new google.feeds.Feed("http://example.com/feed1");
var feed2 = new google.feeds.Feed("http://example.com/feed2");
// some load/after process after this
}
And if you want to update every 5 seconds you can use
var updateInterval = window.setInterval(someHandler, 5000);