少年幃禿的煩惱


心情也微微的...凸

最近的學習心得 都改放到 少年幃禿的煩惱@Google Sites

2008/07/17

Google AJAX Feed API (4) - The FeedControl

這個範例使用了高階的 google.feeds.FeedControl 類別顯示一連串的 feeds. 這個類別類似於 AJAX Search API 中的 SearchControl. 這個範例建了 FeedControl 類別, 然後新增了兩個 feeds, 並且繪製出來.
Code:

&lt;html> &lt;head> <script type="text/javascript" src="//www.google.com/jsapi?key=YOUR-KEY"></script> <script type="text/javascript"> google.load("feeds", "1"); function initialize() { var feedControl = new google.feeds.FeedControl(); feedControl.addFeed("http://www.digg.com/rss/index.xml", "Digg"); feedControl.addFeed("http://feeds.feedburner.com/Techcrunch", "TechCrunch"); feedControl.draw(document.getElementById("feedControl")); } google.setOnLoadCallback(initialize); </script> &lt;/head> &lt;body> <div id="feedControl">Loading</div> &lt;/body> &lt;/html> Demo: