在未知时间内,它处理的变量会获得一个新值。我想刷新页面上的输出,而不是每10秒重新加载一次。
怎么样?请帮忙。
答案 0 :(得分:1)
您可以使用setInterval,https://www.w3schools.com/jsref/met_win_setinterval.asp
之类的内容 setInterval(function() {
//do what you need to with the variable here
}, 10 * 1000); //since millseconds
答案 1 :(得分:0)
使用setInterval。
setInterval(function() {
}, 10*1000)
如上所述。
... BUT 如果变量的新值与时间有关,那么您最好使用时间戳方法,而不是基于setInterval进行计算。