0
我正在研究谷歌的Google小工具,並想知道如何使用代碼(Javascript)每秒刷新小工具本身,以便從Google財經獲取最新股票報價。谷歌小工具如何刷新或重新加載自己
有沒有從谷歌小工具API的任何內置功能?
謝謝。
我正在研究谷歌的Google小工具,並想知道如何使用代碼(Javascript)每秒刷新小工具本身,以便從Google財經獲取最新股票報價。谷歌小工具如何刷新或重新加載自己
有沒有從谷歌小工具API的任何內置功能?
謝謝。
難道你不能只使用標準的window.setInterval()和window.clearInterval()Javascript函數,我認爲你甚至可以在Google Gadget中訪問DOM。類似這樣的:
var intervalId = window.setInterval(function() { /*your code to refresh here*/ },
1000 //1 second in milliseconds);
//Do this to stop the function running if necessary...
window.clearInterval(intervalId);