如何每30分钟更新一次实时图块(win 8 app)? (JavaScript的)
我有功能“UpdateIt()”并更新我的磁贴。那么问题 - 如何在后台执行此功能?
由于
答案 0 :(得分:0)
var changetitletimer = setInterval(function() { UpdateIt(); } , 1800000);
/* 1800000 is the value for 30min in milliseconds */
如果你想阻止它:
clearInterval(changetitletimer);