我试图让HTML / PHP页面中的表每10秒自动刷新一次。在此表格中,嵌入了Google电子表格中的图表。我做错了什么?
var counter = 0;
window.setInterval("refreshDiv()", 10000);
function refreshDiv(){
counter = counter + 1;
document.getElementById("google");
}
答案 0 :(得分:0)
As per documentation setInterval()接收两个参数。第一个是函数,第二个是等待下一次执行的毫秒。
您正在传递一个字符串作为第一个参数。在这里,您可以执行refreshDiv函数。
var counter = 0;
var refreshDiv = function () {
console.log( 'Hey! I was called!!!' );
counter = counter + 1;
document.getElementById( "google" );
}
window.setInterval(refreshDiv, 10000);