判断当前时间,是否在某时间段内

isDuringDate: function(beginDateStr, endDateStr) {
            var curDate = new Date(),
              beginDate = new Date(beginDateStr),
              endDate = new Date(endDateStr);
            if (curDate >= beginDate && curDate <= endDate) {
              return true;
            }
            return false;
          }
date.isDuringDate('2018/09/17', '2030/09/17');
// 当前时间是否在2018/09/17 - 2030/09/17 之间,输出 true
 
 
date.isDuringDate('2018/09/17 13:00', '2019/09/17 15:00');
// 当前时间是否在2018/09/17 13:00 - 2019/09/17 15:00 之间,输出 false
 
 
date.isDuringDate('2018-09-17 13:00', '2019-09-17 15:00');
// 当前时间是否在2018/09/17 13:00 - 2019-09-17 15:00 之间,输出 false

————————————————
版权声明:本文为CSDN博主「ywh-愿来」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/yh_hh/article/details/113393389

你可能感兴趣的:(判断当前时间,是否在某时间段内)