admin管理员组文章数量:1350322
I have a javascript function that runs every one minute.
setInterval(function(){
//first, check time, if it is 9 AM, reload the page
var now = new Date();
if (now.getHours() == 9 {
window.refresh();
}
//do other stuff
},60000);
Now the problem is, I want the reload to happen only once a day. since the function runs every minutes, so next time it fires up, it will reload the page again if it is between 9AM and 10AM. How do I make the reload happen only once?
I can probably do it by creating another interval function that fires every hour and check if I should reload. but since I already have the above function that runs every minute, can I do it from there?
If I do end up with creating another function that checks every hour. What will happen if those 2 functions fire up at the exact same time?
I have a javascript function that runs every one minute.
setInterval(function(){
//first, check time, if it is 9 AM, reload the page
var now = new Date();
if (now.getHours() == 9 {
window.refresh();
}
//do other stuff
},60000);
Now the problem is, I want the reload to happen only once a day. since the function runs every minutes, so next time it fires up, it will reload the page again if it is between 9AM and 10AM. How do I make the reload happen only once?
I can probably do it by creating another interval function that fires every hour and check if I should reload. but since I already have the above function that runs every minute, can I do it from there?
If I do end up with creating another function that checks every hour. What will happen if those 2 functions fire up at the exact same time?
Share Improve this question edited Feb 22, 2013 at 19:57 neo asked Feb 22, 2013 at 19:54 neoneo 2,4719 gold badges44 silver badges67 bronze badges 10- 1 Do you only want it to happen once per user? Or once overall? – alt Commented Feb 22, 2013 at 19:57
- I would like to see a good answer for this. – RG-3 Commented Feb 22, 2013 at 20:01
- once a day for each user. so if the webpage keep running, it will reload at 9 am today, and then reload at 9 am tomorrow... – neo Commented Feb 22, 2013 at 20:01
- I don't understand, why do you need this refresh? You have to know that the time is Client side, i.e. 9 am here, can be 12am there. And the refresh only works for users current visiting your webpage, depending of the timezone. – Jefferson Henrique C. Soares Commented Feb 22, 2013 at 20:08
-
1
window.refresh()
doesn't do anything - you needlocation.reload()
– NickG Commented Oct 17, 2014 at 15:22
3 Answers
Reset to default 10I would store the date of the last refresh, calculate the difference, and it it's less than 6 hours (to be safe) you won't need a refresh.
var lastRefresh = new Date(); // If the user just loaded the page you don't want to refresh either
setInterval(function(){
//first, check time, if it is 9 AM, reload the page
var now = new Date();
if (now.getHours() == 9 && new Date() - lastRefresh > 1000 * 60 * 60 * 6) { // If it is between 9 and ten AND the last refresh was longer ago than 6 hours refresh the page.
location.reload();
}
//do other stuff
},60000);
I hope this is what you meant. Note this is untested.
without going into more plex solutions for getting this done in a nicer way, you can use getDay() and save it in a cookie so that you can check if the last time this method was called it was with the same day, this way only a day after you'll be at 9am and in a different day.
It is in C#. The algorithm will be:
- Create a timer in C# where it runs at Nth hour (eg. 10:00 AM, 14:00 PM, etc.)
- You check whether the time is X hour or not (in this case 9:00 AM).
- If it is, then you refresh the page.
本文标签: javascriptHow to reload a page at certain hour and only once a dayStack Overflow
版权声明:本文标题:javascript - How to reload a page at certain hour and only once a day - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743857864a2551189.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论