检查工作日和时间是否匹配

时间:2016-05-25 12:44:48

标签: javascript time

我目前正在寻找一个解决方案来检查工作日是星期二到星期三 所以我想在星期二晚上10点到星期三上午05点在我的网站上显示一条消息

我如何在if else sniped中构建它?

1 个答案:

答案 0 :(得分:0)

如果你在谈论用户的浏览器时区:

// get time now
// local to user's timezone
var now = new Date();

// check if it is Tuesday and after 10 --OR-- check if it is Wednesday and before 5
if((now.getDay() == 2 && now.getHours() >= 22) || (now.getDay() == 3 && now.getHours() < 5))
{
    // do yo thing chicken wing
}