0

我正在开发一个用于股票的谷歌小工具,并且想知道如何编写代码(Javascript)以每秒刷新小工具本身以从谷歌金融获取最新的股票报价。

google gadget api是否有任何内置功能?

谢谢。

4

1 回答 1

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);
于 2011-02-01T00:55:51.420 回答