我正在研究股票的谷歌小工具,并想知道如何编码(Javascript)每秒刷新小工具本身以获得谷歌财务的最新股票报价。
google gadget api是否有内置函数?
感谢。
答案 0 :(得分:0)
难道你不能只使用标准的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);