在JavaScript中创建计划任务
我在javascript
创建一个应用程序,它在每个星期天上午12点发送通知。
我该怎么做才能在那个时候调用一个函数。
我不会用javascript做到这一点
那说(喊叫……)
function foo(){ var day =new Date().getDay(); var hours =new Date().getHours(); if (day === 0 && hours >12 && hours < 13) // day is a 0 index base // sunday between 12:00 and 13:00 // Do what you want here: } setInterval(foo, 3600000); // one hour check.
现场演示