0

我试图调用一个函数两次,但是使用当前代码,我跳过了 getPoints() 函数,并调用了 setInterval 中的 getPoints() 函数。我试图让它调用 getPoints() 函数,然后调用 setInterval 中的那个。

var background;
// background page
background = chrome.extension.getBackgroundPage();
// get totals
getPoints(background.localStorage.points);
// update every 30 seconds
setInterval(function() {
  console.log("func");
  getPoints(background.localStorage.points);
}, 30000);
4

1 回答 1

1

试试这个:

window.onload = function() {
    var background;
    // background page
    background = chrome.extension.getBackgroundPage();
    // get totals
    getPoints(background.localStorage.points);
    // update every 30 seconds
    setInterval(function () {
        console.log("func");
        getPoints(background.localStorage.points);
    }, 30000);
};
于 2012-08-16T05:15:23.347 回答