如何每30分钟更新一次实时图块(win 8 app)

时间:2014-02-09 14:48:26

标签: javascript windows-8 microsoft-metro tile live-tile

如何每30分钟更新一次实时图块(win 8 app)? (JavaScript的)

我有功能“UpdateIt()”并更新我的磁贴。那么问题 - 如何在后台执行此功能?

由于

1 个答案:

答案 0 :(得分:0)

var changetitletimer = setInterval(function() { UpdateIt(); } , 1800000);
/* 1800000 is the value for 30min in milliseconds */

如果你想阻止它:

clearInterval(changetitletimer);